-
Notifications
You must be signed in to change notification settings - Fork 56
/
composer.json
42 lines (42 loc) · 1.39 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.4|^8.0",
"nette/utils": "^3.1",
"slevomat/coding-standard": "^6.3",
"squizlabs/php_codesniffer": "^3.5"
},
"require-dev": {
"phpstan/phpstan": "^0.12.38",
"phpunit/phpunit": "^9.3",
"rector/rector": "^0.8.6",
"symplify/changelog-linker": "^8.2",
"symplify/coding-standard": "^8.2",
"symplify/easy-coding-standard-tester": "^8.2",
"symplify/phpstan-extensions": "^8.2",
"tracy/tracy": "^2.7",
"phpstan/phpdoc-parser": "^0.4.9",
"migrify/config-transformer": "^0.3.35"
},
"autoload": {
"psr-4": {
"ObjectCalisthenics\\": "src/ObjectCalisthenics"
}
},
"autoload-dev": {
"psr-4": {
"ObjectCalisthenics\\Tests\\": "tests"
}
},
"scripts": {
"complete-check": ["@phpstan", "@check-cs", "phpunit"],
"phpstan": "phpstan analyze src tests --error-format symplify --ansi",
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --fix --ansi",
"changelog": "changelog-linker dump-merges",
"rector": "rector process --dry-run --config rector-ci.php --ansi"
}
}