-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
executable file
·39 lines (39 loc) · 1.48 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
{
"name": "sdis62/prevarisc",
"description": "Application web open-source gérant l'ensemble de l'activité du service prévention au sein d'un SDIS.",
"keywords": [
"sdis62",
"prevarisc",
"prevention"
],
"homepage": "https://github.com/SDIS62/prevarisc",
"license": "CECILL-B",
"require": {
"php": "^7.0",
"zendframework/zendframework1": "^1.0",
"cybermonde/odtphp": "^1.0",
"michelf/php-markdown": "^1.0",
"kdubuc/gd_resize": "^1.0",
"sdis62/toolbox": "dev-master",
"sebastian/git": "^2.0",
"sabre/vobject": "~4",
"jasig/phpcas": "~1.4.0",
"phpoffice/phpexcel": "^1.8"
},
"require-dev": {
"phpunit/phpunit": "^7.0"
},
"scripts": {
"cs-check": "/usr/bin/php8.3 tools/vendor/bin/rector --dry-run && /usr/bin/php8.3 tools/vendor/bin/php-cs-fixer fix --dry-run",
"cs-fix": "/usr/bin/php8.3 tools/vendor/bin/rector && /usr/bin/php8.3 tools/vendor/bin/php-cs-fixer fix",
"analyse": "/usr/bin/php8.3 tools/vendor/bin/phpstan analyse --memory-limit=-1",
"generate-baseline": "/usr/bin/php8.3 tools/vendor/bin/phpstan --memory-limit=-1 --generate-baseline",
"test": "php vendor/bin/phpunit --bootstrap tests/bootstrap/indexTest.php --testdox tests/",
"test-coverage": "@test --coverage-html tests/coverage/ --whitelist application/"
},
"config": {
"platform": {
"php": "7.1.33"
}
}
}