generated from psalm/psalm-plugin-skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
69 lines (69 loc) · 1.88 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
{
"name": "php-static-analysis/psalm-plugin",
"description": "Psalm plugin to read static analysis attributes",
"type": "psalm-plugin",
"keywords": ["dev", "static analysis"],
"license": "MIT",
"autoload": {
"psr-4": {
"PhpStaticAnalysis\\PsalmPlugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"test\\PhpStaticAnalysis\\PsalmPlugin\\": "tests/",
"Psalm\\Tests\\": "vendor/vimeo/psalm/tests"
}
},
"authors": [
{
"name": "Carlos Granados",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.0",
"ext-simplexml": "*",
"php-static-analysis/attributes": "^0.3.2 || dev-main",
"php-static-analysis/node-visitor": "^0.3.2 || dev-main",
"vimeo/psalm": "^5",
"webmozart/assert": "^1.11"
},
"require-dev": {
"php-static-analysis/phpstan-extension": "^0.3.2 || dev-main",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.8 | ^2.0",
"phpunit/phpunit": "^9.0",
"symplify/easy-coding-standard": "^12.1"
},
"config": {
"preferred-install": {
"vimeo/psalm": "source"
},
"allow-plugins": {
"phpstan/extension-installer": true
},
"sort-packages": true
},
"extra": {
"psalm": {
"pluginClass": "PhpStaticAnalysis\\PsalmPlugin\\Plugin"
}
},
"scripts": {
"tests": [
"@ecs",
"@psalm",
"@phpunit",
"@phpstan"
],
"psalm": "psalm",
"psalm-debug": "PSALM_ALLOW_XDEBUG=1 psalm --no-cache",
"ecs": "ecs",
"ecs-fix": "ecs --fix",
"phpunit": "phpunit",
"phpstan": "phpstan analyse"
}
}