psalm-plugin-laravel/composer.json
Matthew Brown 46ac3d58ce Fix comma
2019-02-20 01:46:23 -05:00

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"
}
}