-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
52 lines (52 loc) · 1.42 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
{
"name": "fkupper/psalm-laravel-collections",
"description": "Stubs to let Psalm understand Laravel Collections better",
"keywords": ["php", "code", "inspection", "laravel6", "laravel", "collection", "psalm", "plugin", "psalm-plugin", "static analysis", "static-analysis", "extension"],
"type": "psalm-plugin",
"license": "MIT",
"authors": [
{
"name": "Fernando Küpper Cardoso",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2",
"vimeo/psalm": "^3"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.3",
"laravel/framework": "^6.0",
"codeception/codeception": "^4.0",
"weirdan/codeception-psalm-module": "^0.8.0"
},
"extra": {
"psalm" : {
"pluginClass": "Fkupper\\Psalm\\LaravelCollection\\Plugin"
}
},
"autoload": {
"psr-4": {
"Fkupper\\Psalm\\LaravelCollection\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Fkupper\\Psalm\\LaravelCollection\\Tests\\": [
"tests/_support",
"tests/acceptance"
]
}
},
"scripts" : {
"check": [
"@cs-check",
"@test",
"@analyze"
],
"analyze": "psalm",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "codecept --colors run -v"
}
}