psalm-plugin-laravel/composer.json

53 lines
1.5 KiB
JSON
Raw Normal View History

2019-02-18 18:40:57 -05:00
{
"name": "psalm/plugin-laravel",
"description": "A Laravel plugin for Psalm",
"type": "psalm-plugin",
"require": {
2020-04-12 14:41:11 -07:00
"php": "^7.1.3|^8",
"ext-simplexml": "*",
2019-03-04 00:27:16 -05:00
"barryvdh/laravel-ide-helper": "^2.6",
"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-05-03 12:47:32 -07:00
"vimeo/psalm": "^3.8.2 || dev-master",
"orchestra/testbench": "^3.8 || ^4.0 || ^5.0"
2019-02-18 18:40:57 -05:00
},
"license": "MIT",
"authors": [
{
"name": "Matthew Brown",
"email": "github@muglug.com"
}
],
"extra": {
"psalm": {
"pluginClass": "Psalm\\LaravelPlugin\\Plugin"
}
},
"autoload": {
"psr-4": {
"Psalm\\LaravelPlugin\\": "src"
}
},
2020-04-08 00:28:39 -07:00
"scripts": {
2019-02-18 18:40:57 -05:00
"check": [
2020-04-12 11:55:32 -07:00
"@analyze",
"@lint",
"@test"
2019-02-18 18:40:57 -05:00
],
2020-04-12 11:55:32 -07:00
"analyze": "psalm",
"lint": "phpcs",
"test": "codecept run"
2020-04-08 00:28:39 -07:00
},
"require-dev": {
"codeception/codeception": "^4.1",
"codeception/module-phpbrowser": "^1.0.0",
"codeception/module-asserts": "^1.0.0",
2020-05-03 10:45:19 -07:00
"weirdan/codeception-psalm-module": "^0.7.1",
2020-04-12 11:55:32 -07:00
"squizlabs/php_codesniffer": "*",
"slevomat/coding-standard": "^6.2"
2019-02-18 18:40:57 -05:00
}
}