psalm-plugin-laravel/composer.json

61 lines
1.6 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-06-10 09:46:18 +02:00
"php": "^7.2|^8",
2020-04-12 23:41:11 +02:00
"ext-simplexml": "*",
"barryvdh/laravel-ide-helper": "dev-master",
"illuminate/container": "5.8.* || ^6.0 || ^7.0",
"illuminate/contracts": "5.8.* || ^6.0 || ^7.0",
"illuminate/database": "5.8.* || ^6.0 || ^7.0",
"illuminate/http": "5.8.* || ^6.0 || ^7.0",
"illuminate/support": "5.8.* || ^6.0 || ^7.0",
2020-06-22 16:35:17 +02:00
"vimeo/psalm": "^3.11.7",
"orchestra/testbench": "^3.8 || ^4.0 || ^5.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",
"lint": "phpcs",
"test": "codecept run"
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-06-22 00:16:06 +02:00
"weirdan/codeception-psalm-module": "^0.8",
2020-04-12 20:55:32 +02:00
"squizlabs/php_codesniffer": "*",
"slevomat/coding-standard": "^6.2"
2019-02-19 00:40:57 +01:00
}
}