-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
71 lines (71 loc) · 1.85 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "php-static-analysis/phpstan-extension",
"description": "PHPStan extension to read static analysis attributes",
"type": "phpstan-extension",
"keywords": ["dev", "static analysis"],
"license": "MIT",
"autoload": {
"psr-4": {
"PhpStaticAnalysis\\PHPStanExtension\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"test\\PhpStaticAnalysis\\PHPStanExtension\\": "tests/"
}
},
"authors": [
{
"name": "Carlos Granados",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"php-static-analysis/attributes": "^0.4.1 || dev-main",
"php-static-analysis/node-visitor": "^0.4.1 || dev-main",
"phpstan/phpstan": "^2.0",
"webmozart/assert": "^1.11"
},
"require-dev": {
"php-static-analysis/psalm-plugin": "^0.4.1 || dev-main",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpunit/phpunit": "^9.0",
"symplify/easy-coding-standard": "^12.1",
"vimeo/psalm": "^6"
},
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-static-analysis/psalm-plugin": true
}
},
"scripts": {
"phpstan": "phpstan analyse",
"phpstan-debug": "phpstan analyse --xdebug --debug",
"ecs": "ecs",
"ecs-fix": "ecs --fix",
"phpunit": "phpunit",
"psalm": "psalm",
"tests": [
"@ecs",
"@phpstan",
"@phpunit",
"@psalm"
],
"tests-without-psalm": [
"@ecs",
"@phpstan",
"@phpunit"
]
}
}