-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 1.04 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
{
"name": "rector/php-parser-nodes-docs",
"license": "MIT",
"description": "Generate visual docs for php-parser nodes - the first step to master AST",
"bin": [
"bin/console",
"bin/console.php"
],
"require": {
"php": "^8.1",
"symfony/console": "^6.3",
"nikic/php-parser": "^4.16",
"illuminate/container": "^10.15",
"webmozart/assert": "^1.11"
},
"require-dev": {
"symplify/easy-coding-standard": "^11.5",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.2",
"rector/rector": "^0.17.6"
},
"autoload": {
"psr-4": {
"Rector\\PhpParserNodesDocs\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Rector\\PhpParserNodesDocs\\Tests\\": "tests"
}
},
"scripts": {
"check-cs": "vendor/bin/ecs check --ansi",
"fix-cs": "vendor/bin/ecs check --fix --ansi",
"phpstan": "vendor/bin/phpstan analyse --ansi",
"build": "bin/console dump-nodes"
}
}