-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 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
{
"name": "fox91/coding-standard",
"description": "fox91 Coding Standard",
"type": "phpcodesniffer-standard",
"keywords": [
"phpcs",
"standards"
],
"license": "MIT",
"authors": [
{
"name": "Andrea Falco",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"phpcompatibility/php-compatibility": "^9.3",
"sirbrillig/phpcs-import-detection": "^1.3",
"sirbrillig/phpcs-variable-analysis": "^2.11",
"slevomat/coding-standard": "^8.1.0",
"squizlabs/php_codesniffer": "^3.6"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"suggest": {
"pheromone/phpcs-security-audit": "[--dev] A set of PHP_CodeSniffer rules that finds vulnerabilities and weaknesses related to security in PHP code"
}
}