forked from object-calisthenics/phpcs-calisthenics-rules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.23 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
{
"name": "object-calisthenics/phpcs-calisthenics-rules",
"description": "PHP CodeSniffer Object Calisthenics rules/sniffs",
"license": "MIT",
"type": "phpcodesniffer-standard",
"require": {
"php": "^7.1",
"squizlabs/php_codesniffer": "^3.4",
"nette/utils": "^2.5",
"slevomat/coding-standard": "^5.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5|^8.0",
"phpstan/phpstan": "^0.11.4",
"symplify/easy-coding-standard-tester": "^5.4",
"symplify/coding-standard": "^5.4",
"symplify/changelog-linker": "^5.4",
"tracy/tracy": "^2.5"
},
"autoload": {
"psr-4": {
"ObjectCalisthenics\\": "src/ObjectCalisthenics"
}
},
"autoload-dev": {
"psr-4": {
"ObjectCalisthenics\\Tests\\": "tests"
}
},
"scripts": {
"complete-check": ["@phpstan", "@check-cs", "phpunit"],
"phpstan": "phpstan analyze src --level max",
"check-cs": "ecs check src tests",
"fix-cs": "ecs check src tests --fix",
"changelog": "changelog-linker dump-merges --in-categories"
},
"extra": {
"branch-alias": {
"dev-master": "3.4-dev"
}
}
}