psalm-plugin-laravel/composer.json

37 lines
842 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-02-19 21:40:12 +01:00
"symfony/psr-http-message-bridge": "^1.0",
2019-03-04 06:27:16 +01:00
"vimeo/psalm": "^3.1",
2019-02-20 01:26:48 +01:00
"league/flysystem-aws-s3-v3": "^1.0",
2019-02-20 08:33:54 +01:00
"orchestra/testbench": "^3.5",
2019-02-20 07:46:23 +01:00
"predis/predis": "^1.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"
}
}