-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
48 lines (48 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
40
41
42
43
44
45
46
47
48
{
"name": "suin/phpcs-psr4-sniff",
"type": "phpcodesniffer-standard",
"description": "PHP_CodeSniffer sniff that checks class name matches PSR-4 project structure.",
"keywords": [
"coding-standards",
"coding-style",
"namespace",
"php-codesniffer",
"phpcs",
"psr-4",
"static-analysis"
],
"homepage": "https://github.com/suin/php",
"license": "MIT",
"authors": [
{
"name": "suin",
"email": "[email protected]",
"homepage": "https://github.com/suin",
"role": "Developer"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"support": {
"issues": "https://github.com/suin/php/issues"
},
"require": {
"php": ">=7.1",
"ext-json": "*",
"slevomat/coding-standard": ">=4.7 <8.0.0",
"squizlabs/php_codesniffer": ">=3.3 <4.0.0"
},
"autoload": {
"psr-0": {
"Suin\\Sniffs\\Classes\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Suin\\Sniffs\\Classes\\": "tests"
}
},
"config": {
"sort-packages": true
}
}