mirror of
https://github.com/danog/psalm-plugin-laravel.git
synced 2024-11-26 20:34:48 +01:00
37 lines
853 B
JSON
37 lines
853 B
JSON
{
|
|
"name": "psalm/plugin-laravel",
|
|
"description": "A Laravel plugin for Psalm",
|
|
"type": "psalm-plugin",
|
|
"require": {
|
|
"barryvdh/laravel-ide-helper": "^2.5",
|
|
"symfony/psr-http-message-bridge": "^1.0",
|
|
"vimeo/psalm": "^3.0.17 || ^3.1",
|
|
"league/flysystem-aws-s3-v3": "^1.0",
|
|
"orchestra/testbench": "^3.7",
|
|
"predis/predis": "^1.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"
|
|
}
|
|
}
|