-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
44 lines (44 loc) · 1.28 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
{
"name": "kdyby/coding-standard",
"type": "library",
"description": "Kdyby Coding Style",
"keywords": ["coding standard", "cs", "coding", "standard", "ruleset", "phpcs", "PHPCodeSniffer", "CodeSniffer", "sniffer"],
"homepage": "http://kdyby.org",
"license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
"require": {
"php": "^7.1",
"consistence/coding-standard": "^3.8",
"nette/utils": "^2.3@dev || ^3.0@dev",
"slevomat/coding-standard": "^5.0",
"squizlabs/php_codesniffer": "^3.4"
},
"require-dev": {
"phpstan/phpstan-phpunit": "^0.11.0",
"phpstan/phpstan-shim": "0.11",
"phpunit/phpunit": "^7.1",
"jakub-onderka/php-parallel-lint": "^1.0"
},
"autoload": {
"psr-4": {
"KdybyCodingStandard\\": "KdybyCodingStandard/"
}
},
"autoload-dev": {
"psr-4": {
"KdybyCodingStandard\\": "tests/",
"SlevomatCodingStandard\\": "vendor/slevomat/coding-standard/tests"
}
},
"config": {
"preferred-install": {
"slevomat/coding-standard": "source",
"*": "dist"
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}