-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
51 lines (51 loc) · 1.18 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "simondevelop/sirene",
"description": "Librairie facilitant l'utilisation de l'API sirene de l'insée",
"type": "library",
"keywords": [
"sirene",
"insee",
"siret",
"siren",
"api"
],
"homepage": "https://github.com/SimonDevelop/sirene",
"license": "MIT",
"authors": [
{
"name": "SimonDevelop",
"email": "contact@simon-micheneau.fr"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"SimonDevelop\\": "src/",
"SimonDevelop\\Test\\": "tests/"
}
},
"require": {
"ext-json": "*",
"php": ">=8.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "4.0.x-dev",
"phpunit/phpunit": "^10.5.40",
"phpstan/phpstan": "^2.1.1"
},
"scripts": {
"phpcs": "phpcs -s",
"phpstan-src": "phpstan analyse -l 5 src",
"phpstan-tests": "phpstan analyse -l 5 tests",
"phpstan": [
"@phpstan-src",
"@phpstan-tests"
],
"phpunit": "phpunit --colors --do-not-cache-result",
"test": [
"@phpcs",
"@phpstan",
"@phpunit"
]
}
}