forked from InfotelGLPI/transferticketentity
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 802 Bytes
/
Copy pathcomposer.json
File metadata and controls
30 lines (30 loc) · 802 Bytes
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
{
"require": {
"php": ">=8.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.95",
"glpi-project/tools": "^0.8",
"php-parallel-lint/php-parallel-lint": "^1.4",
"glpi-project/phpstan-glpi": "^1.1",
"phpunit/phpunit": "^11.5"
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "8.2.99"
},
"sort-packages": true
},
"scripts": {
"lint": "parallel-lint --exclude vendor --exclude node_modules .",
"cs": "php-cs-fixer fix --dry-run --diff --ansi",
"cs-fix": "php-cs-fixer fix --ansi",
"phpstan": "phpstan analyze --ansi --memory-limit=1G",
"qa": [
"@lint",
"@phpstan",
"@cs"
]
}
}