forked from psalm/psalm-plugin-laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.73 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
{
"name": "psalm/plugin-laravel",
"description": "A Laravel plugin for Psalm",
"type": "psalm-plugin",
"require": {
"php": "^7.3|^8",
"ext-simplexml": "*",
"barryvdh/laravel-ide-helper": "^2.8.0",
"illuminate/container": "5.8.* || ^6.0 || ^7.0 || ^8.0",
"illuminate/contracts": "5.8.* || ^6.0 || ^7.0 || ^8.0",
"illuminate/database": "5.8.* || ^6.0 || ^7.0 || ^8.0",
"illuminate/http": "5.8.* || ^6.0 || ^7.0 || ^8.0",
"illuminate/support": "5.8.* || ^6.0 || ^7.0 || ^8.0",
"vimeo/psalm": "^4.0",
"orchestra/testbench": "^3.8 || ^4.0 || ^5.0 || ^6.0"
},
"license": "MIT",
"authors": [
{
"name": "Matthew Brown",
"email": "[email protected]"
}
],
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
},
"psalm": {
"pluginClass": "Psalm\\LaravelPlugin\\Plugin"
}
},
"autoload": {
"psr-4": {
"Psalm\\LaravelPlugin\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Psalm\\LaravelPlugin\\": "tests"
}
},
"scripts": {
"check": [
"@analyze",
"@lint",
"@test"
],
"analyze": "psalm",
"lint": "phpcs -n",
"lint-fix": "phpcbf -n",
"test": "codecept run"
},
"require-dev": {
"codeception/codeception": "^4.1.6",
"codeception/module-phpbrowser": "^1.0.0",
"codeception/module-asserts": "^1.0.0",
"weirdan/codeception-psalm-module": "^0.13.1",
"squizlabs/php_codesniffer": "*",
"slevomat/coding-standard": "^6.2"
},
"minimum-stability": "dev"
}