-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
48 lines (48 loc) · 1.07 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
{
"name": "mediact/coding-standard",
"description": "MediaCT PHP Coding Standard",
"type": "phpcs-sniffs",
"license": "MIT",
"abandoned": "youwe/coding-standard",
"authors": [
{
"name": "MediaCT",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0",
"squizlabs/php_codesniffer": "~3.5.0",
"phpmd/phpmd": "^2.0"
},
"require-dev": {
"mediact/testing-suite": "@stable"
},
"autoload": {
"psr-4": {
"Mediact\\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": {
"sort-packages": true
}
}