-
Notifications
You must be signed in to change notification settings - Fork 71
/
composer.json
81 lines (81 loc) · 2.56 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
72
73
74
75
76
77
78
79
80
81
{
"name": "psalm/plugin-laravel",
"description": "Psalm plugin for Laravel",
"license": "MIT",
"type": "psalm-plugin",
"authors": [
{
"name": "Matthew Brown",
"email": "[email protected]"
}
],
"homepage": "https://github.com/psalm/psalm-plugin-laravel",
"require": {
"php": "^8.1",
"ext-simplexml": "*",
"barryvdh/laravel-ide-helper": "^2.13 || ^3.0",
"illuminate/config": "^10.48 || ^11.0",
"illuminate/container": "^10.48 || ^11.0",
"illuminate/contracts": "^10.48 || ^11.0",
"illuminate/database": "^10.48 || ^11.0",
"illuminate/events": "^10.48 || ^11.0",
"illuminate/http": "^10.48 || ^11.0",
"illuminate/routing": "^10.48 || ^11.0",
"illuminate/support": "^10.48 || ^11.0",
"illuminate/view": "^10.48 || ^11.0",
"nikic/php-parser": "^4.18 || ^5.0",
"orchestra/testbench-core": "^8.22 || ^9.0",
"symfony/console": "^6.0 || ^7.0",
"symfony/finder": "^6.0 || ^7.0",
"vimeo/psalm": "^5.20"
},
"require-dev": {
"laravel/framework": "^10.48 || ^11.0",
"phpunit/phpunit": "^10.5 || ^11.0",
"phpyh/psalm-tester": "^0.1.0",
"ramsey/collection": "^1.3",
"rector/rector": "^1.0",
"slevomat/coding-standard": "^8.8",
"squizlabs/php_codesniffer": "*",
"symfony/http-foundation": "^6.0 || ^7.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Psalm\\LaravelPlugin\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"App\\": "tests/Application/app/",
"Tests\\Psalm\\LaravelPlugin\\": "tests"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"extra": {
"psalm": {
"pluginClass": "Psalm\\LaravelPlugin\\Plugin"
}
},
"scripts": {
"lint": "phpcs --report-full --report-summary --colors -n -s",
"lint-fix": "phpcbf -n",
"psalm": "psalm --find-dead-code --find-unused-psalm-suppress --long-progress",
"psalm-set-baseline": "psalm --set-baseline=psalm-baseline.xml",
"test": [
"@lint",
"@psalm",
"@test:unit",
"@test:type"
],
"test:type": "phpunit --testsuite=type",
"test:unit": "phpunit --testsuite=unit",
"rector": "./vendor/bin/rector --dry-run"
}
}