forked from alamirault/fftt-api-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (55 loc) · 1.44 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
52
53
54
55
56
{
"name": "alamirault/fftt-api-src",
"description": "SDK afin de consommer l'api FFTT",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Antoine Lamirault",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Alamirault\\FFTTApi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Alamirault\\FFTTApi\\Tests\\": "tests"
}
},
"require": {
"php": "^8.1",
"ext-simplexml": "*",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3",
"reisraff/accentuation": "^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.11",
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "^6.1",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.11",
"rector/rector": "^0.14.2"
},
"scripts": {
"cs": "./bin/php-cs-fixer fix --verbose --diff --using-cache=no --dry-run",
"cs-fix": "./bin/php-cs-fixer fix --verbose --diff --using-cache=no",
"phpstan": "./bin/phpstan analyse",
"phpunit": "./bin/phpunit",
"coverage": "./bin/phpunit --coverage-html coverage",
"check-style": [
"@cs",
"@phpstan"
],
"tests": [
"@phpunit",
"@check-style"
]
},
"config": {
"bin-dir": "bin"
}
}