psalm-plugin-laravel/composer.json
2020-01-08 00:10:08 -05:00

34 lines
722 B
JSON

{
"name": "psalm/plugin-laravel",
"description": "A Laravel plugin for Psalm",
"type": "psalm-plugin",
"require": {
"barryvdh/laravel-ide-helper": "^2.6",
"vimeo/psalm": "^3.8.2",
"orchestra/testbench": "^3.5 || ^4.0"
},
"license": "MIT",
"authors": [
{
"name": "Matthew Brown",
"email": "github@muglug.com"
}
],
"extra": {
"psalm": {
"pluginClass": "Psalm\\LaravelPlugin\\Plugin"
}
},
"autoload": {
"psr-4": {
"Psalm\\LaravelPlugin\\": "src"
}
},
"scripts" : {
"check": [
"@analyze"
],
"analyze": "psalm"
}
}