-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
47 lines (47 loc) · 1.35 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
{
"name": "symplify/rule-doc-generator",
"description": "Documentation generator for coding standard or static analysis rules",
"license": "MIT",
"bin": [
"bin/rule-doc-generator"
],
"require": {
"php": ">=8.2",
"symfony/console": "^6.4",
"nette/robot-loader": "^4.0",
"symplify/rule-doc-generator-contracts": "^11.1",
"nette/utils": "^4.0",
"sebastian/diff": "^6.0",
"illuminate/container": "^11.0",
"webmozart/assert": "^1.11",
"symfony/yaml": "^7.0",
"symfony/filesystem": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"phpstan/phpstan": "^1.11",
"symplify/easy-coding-standard": "^12.3",
"rector/rector": "^1.1",
"tracy/tracy": "^2.10",
"tomasvotruba/class-leak": "^0.2"
},
"autoload": {
"psr-4": {
"Symplify\\RuleDocGenerator\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Symplify\\RuleDocGenerator\\Tests\\": "tests"
},
"classmap": [
"stubs"
]
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse --ansi",
"check-cs": "vendor/bin/ecs check --ansi",
"fix-cs": "vendor/bin/ecs check --fix --ansi",
"rector": "vendor/bin/rector process --dry-run --ansi"
}
}