2019-02-19 00:40:57 +01:00
|
|
|
{
|
|
|
|
"name": "psalm/plugin-laravel",
|
|
|
|
"description": "A Laravel plugin for Psalm",
|
|
|
|
"type": "psalm-plugin",
|
|
|
|
"require": {
|
2020-10-19 16:41:34 +02:00
|
|
|
"php": "^7.3|^8",
|
2020-04-12 23:41:11 +02:00
|
|
|
"ext-simplexml": "*",
|
2021-07-13 18:47:10 +02:00
|
|
|
"illuminate/config": "^6.0 || ^8.0",
|
|
|
|
"illuminate/container": "^6.0 || ^8.0",
|
|
|
|
"illuminate/contracts": "^6.0 || ^8.0",
|
|
|
|
"illuminate/database": "^6.0 || ^8.0",
|
|
|
|
"illuminate/events": "^6.0 || ^8.0",
|
|
|
|
"illuminate/http": "^6.0 || ^8.0",
|
|
|
|
"illuminate/routing": "^6.0 || ^8.0",
|
|
|
|
"illuminate/support": "^6.0 || ^8.0",
|
|
|
|
"illuminate/view": "^6.0 || ^8.0",
|
2021-06-22 01:05:24 +02:00
|
|
|
"vimeo/psalm": "^4.8.1",
|
|
|
|
"orchestra/testbench": "^3.8 || ^4.0 || ^5.0 || ^6.0",
|
|
|
|
"barryvdh/laravel-ide-helper": ">=2.8.0 <2.9.2"
|
2019-02-19 00:40:57 +01:00
|
|
|
},
|
|
|
|
"license": "MIT",
|
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Matthew Brown",
|
|
|
|
"email": "github@muglug.com"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"extra": {
|
2020-06-10 09:15:01 +02:00
|
|
|
"branch-alias": {
|
|
|
|
"dev-master": "1.x-dev"
|
|
|
|
},
|
2019-02-19 00:40:57 +01:00
|
|
|
"psalm": {
|
|
|
|
"pluginClass": "Psalm\\LaravelPlugin\\Plugin"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"Psalm\\LaravelPlugin\\": "src"
|
|
|
|
}
|
|
|
|
},
|
2020-06-07 04:26:46 +02:00
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
|
|
|
"Tests\\Psalm\\LaravelPlugin\\": "tests"
|
|
|
|
}
|
|
|
|
},
|
2020-04-08 09:28:39 +02:00
|
|
|
"scripts": {
|
2019-02-19 00:40:57 +01:00
|
|
|
"check": [
|
2020-04-12 20:55:32 +02:00
|
|
|
"@analyze",
|
2020-04-12 23:40:34 +02:00
|
|
|
"@lint",
|
|
|
|
"@test"
|
2019-02-19 00:40:57 +01:00
|
|
|
],
|
2020-04-12 20:55:32 +02:00
|
|
|
"analyze": "psalm",
|
2020-07-25 23:56:57 +02:00
|
|
|
"lint": "phpcs -n",
|
2020-07-26 00:41:55 +02:00
|
|
|
"lint-fix": "phpcbf -n",
|
2021-06-14 22:43:53 +02:00
|
|
|
"test": "codecept run --skip-group skip"
|
2020-04-08 09:28:39 +02:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2020-06-07 21:53:16 +02:00
|
|
|
"codeception/codeception": "^4.1.6",
|
2020-04-08 09:28:39 +02:00
|
|
|
"codeception/module-phpbrowser": "^1.0.0",
|
|
|
|
"codeception/module-asserts": "^1.0.0",
|
2020-12-07 15:56:40 +01:00
|
|
|
"weirdan/codeception-psalm-module": "^0.13.1",
|
2020-04-12 20:55:32 +02:00
|
|
|
"squizlabs/php_codesniffer": "*",
|
|
|
|
"slevomat/coding-standard": "^6.2"
|
2020-07-08 12:39:45 +02:00
|
|
|
},
|
2021-10-08 12:47:48 +02:00
|
|
|
"config": {
|
|
|
|
"sort-packages": true
|
|
|
|
},
|
2020-07-08 12:39:45 +02:00
|
|
|
"minimum-stability": "dev"
|
2019-02-19 00:40:57 +01:00
|
|
|
}
|