-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.64 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "php-static-analysis/node-visitor",
"description": "PHP parser node visitor that converts Attributes into PHPDoc annotations",
"type": "library",
"keywords": ["dev", "static analysis"],
"license": "MIT",
"autoload": {
"psr-4": {
"PhpStaticAnalysis\\NodeVisitor\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"test\\PhpStaticAnalysis\\NodeVisitor\\": "tests/"
}
},
"authors": [
{
"name": "Carlos Granados",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"nikic/php-parser": "^5",
"php-static-analysis/attributes": "^0.4.0 || dev-main"
},
"require-dev": {
"php-static-analysis/phpstan-extension": "^0.4.1 || dev-main",
"php-static-analysis/psalm-plugin": "^0.4.1 || dev-main",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^9.0",
"psalm/plugin-phpunit": "^0.19.2",
"symplify/easy-coding-standard": "^12.1",
"vimeo/psalm": "^6"
},
"scripts": {
"phpstan": "phpstan analyse",
"ecs": "ecs",
"ecs-fix": "ecs --fix",
"phpunit": "phpunit",
"psalm": "psalm",
"tests": [
"@ecs",
"@phpstan",
"@phpunit",
"@psalm"
]
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"php-static-analysis/psalm-plugin": true
},
"sort-packages": true
}
}