psalm-plugin-laravel/composer.json

67 lines
1.8 KiB
JSON
Raw Normal View History

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": "*",
"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",
2021-09-16 20:27:29 +02:00
"barryvdh/laravel-ide-helper": ">=2.8.0"
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"
}
},
"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",
"@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",
"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"
},
"minimum-stability": "dev"
2019-02-19 00:40:57 +01:00
}