mirror of
https://github.com/danog/psalm-plugin-laravel.git
synced 2024-11-26 20:34:48 +01:00
34 lines
720 B
JSON
34 lines
720 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.7",
|
|
"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"
|
|
}
|
|
}
|