-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.2 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.2 KB
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": "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.3",
"nikic/php-parser": "^5.6",
"webmozart/assert": "^1.11",
"symfony/finder": "^7.3"
},
"require-dev": {
"symplify/easy-coding-standard": "^12.6",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12.4",
"rector/rector": "^2.2.2",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/extension-installer": "^1.4"
},
"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"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}