forked from SDIS62/prevarisc-passerelle-platau
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1.21 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
{
"name": "sdis62/prevarisc-passerelle-platau",
"type": "application",
"description": "Une passerelle d'import / export automatisée entre Prevarisc et Plat'AU",
"require": {
"php": "^7.4 || ^8.0",
"guzzlehttp/guzzle": "^7.0",
"kamermans/guzzle-oauth2-subscriber": "^1.0",
"uma/dic": "^1.0",
"symfony/console": "^5.2",
"doctrine/dbal": "^3.0",
"league/flysystem": "^2.0",
"symfony/options-resolver": "^5.2",
"pagerfanta/pagerfanta": "^3.6",
"caseyamcl/guzzle_retry_middleware": "^2.8",
"adbario/php-dot-notation": "^3.2"
},
"require-dev": {
"kdubuc/php-cs-fixer-rules": "^1.0",
"vimeo/psalm": "^5.0",
"phpunit/phpunit": "^9.0"
},
"license": "CeCILL-B",
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"bin": [
"bin/platau"
],
"scripts": {
"analyse": "/usr/bin/php8.3 vendor/bin/psalm",
"cs-check": "@cs-fix --dry-run",
"cs-fix": "/usr/bin/php8.3 vendor/bin/php-cs-fixer fix --config=vendor/kdubuc/php-cs-fixer-rules/php-cs-fixer.php",
"generate-baseline": "@analyse --set-baseline=psalm-baseline.xml"
}
}