forked from mediact/coding-standard
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
50 lines (50 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
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "youwe/coding-standard",
"description": "Youwe PHP Coding Standard",
"license": "MIT",
"type": "phpcodesniffer-standard",
"authors": [
{
"name": "Youwe B.V.",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0 || ^8.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2 || ^1.0",
"phpmd/phpmd": "^2.0",
"squizlabs/php_codesniffer": "^3.9.0"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Youwe\\CodingStandard\\": "src"
}
},
"autoload-dev": {
"files": [
"vendor/squizlabs/php_codesniffer/autoload.php"
]
},
"archive": {
"exclude": [
"/.gitignore",
"/phpunit.xml",
"/phpmd.xml",
"/phpstan.neon",
"/phpcs.xml",
"/docker-compose.yml",
"/.env.dev",
"/grumphp.yml",
"/pdepend.xml",
"/tests"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
}
}