psalm-plugin-laravel/composer.json

34 lines
720 B
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": {
2019-03-04 06:27:16 +01:00
"barryvdh/laravel-ide-helper": "^2.6",
2019-11-29 21:01:27 +01:00
"vimeo/psalm": "^3.7",
2019-10-27 00:46:51 +02:00
"orchestra/testbench": "^3.5 || ^4.0"
2019-02-19 00:40:57 +01:00
},
"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"
}
}