-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
53 lines (53 loc) · 1.25 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
{
"name": "struggle-for-php/sfp-psalm-typed-local-variable-plugin",
"description": "finding mismatch type assignment in function/method scope with psalm",
"keywords": ["psalm", "psalm-plugin", "static analysis", "static-analysis"],
"type": "psalm-plugin",
"license": "MIT",
"authors": [
{
"name": "sasezaki",
"email": "sasezaki@gmail.com"
}
],
"require": {
"php" : "^7.4.3|^8",
"ext-simplexml": "*",
"vimeo/psalm": "^4",
"nikic/php-parser": "^4.10"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.3",
"phpunit/phpunit": "^9|^10",
"infection/infection": "^0.25",
"slevomat/coding-standard": "^7.0",
"doctrine/coding-standard": "^9.0",
"roave/infection-static-analysis-plugin": "^1.10"
},
"extra": {
"psalm" : {
"pluginClass": "Sfp\\Psalm\\TypedLocalVariablePlugin\\Plugin"
}
},
"autoload": {
"psr-4": {
"Sfp\\Psalm\\TypedLocalVariablePlugin\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SfpTest\\Psalm\\TypedLocalVariablePlugin\\Unit\\": "tests/Unit"
}
},
"scripts" : {
"check": [
"@cs-check",
"@test",
"@analyze"
],
"analyze": "psalm",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit"
}
}