forked from spaceemotion/php-coding-standard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.79 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
51
52
53
54
55
56
57
58
59
{
"name": "spaceemotion/php-coding-standard",
"type": "library",
"description": "Combines multiple code quality tools into one binary with unified output.",
"keywords": [
"phpcs",
"linting",
"phpstan",
"phpmd",
"analysis",
"code quality"
],
"homepage": "https://github.com/spaceemotion/php-coding-standard",
"license": "ISC",
"authors": [
{
"name": "spaceemotion",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1",
"ext-json": "*",
"composer/xdebug-handler": "^1.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.4",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpmd/phpmd": "^2.8",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-deprecation-rules": "^0.12",
"phpstan/phpstan-strict-rules": "^0.12",
"psalm/phar": "^3.11",
"symplify/easy-coding-standard-prefixed": "^7.2"
},
"suggest": {
"ergebnis/composer-normalize": "Normalizes composer.json files",
"php-parallel-lint/php-parallel-lint": "Quickly lints the whole codebase for PHP errors",
"phpmd/phpmd": "Code mess detection",
"phpstan/phpstan": "Static analysis",
"psalm/phar": "Static analysis (.phar)",
"symplify/easy-coding-standard": "Code style linter + fixer",
"symplify/easy-coding-standard-prefixed": "Code style linter + fixer (.phar)",
"vimeo/psalm": "Static analysis"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Spaceemotion\\PhpCodingStandard\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": [
"bin/phpcstd"
]
}