mirror of
https://github.com/danog/psalm-plugin-laravel.git
synced 2024-11-27 04:45:26 +01:00
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"name": "psalm/plugin-laravel",
|
|
"description": "A Laravel plugin for Psalm",
|
|
"type": "psalm-plugin",
|
|
"require": {
|
|
"barryvdh/laravel-ide-helper": "^2.6",
|
|
"laravel/framework": "^5.5 || ^6.0",
|
|
"vimeo/psalm": "^3.8.2",
|
|
"orchestra/testbench": "^3.5 || ^4.0 || ^5.0",
|
|
"psr/event-dispatcher": "^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",
|
|
"@phpcs"
|
|
],
|
|
"analyze": "psalm",
|
|
"lint": "phpcs"
|
|
},
|
|
"require-dev": {
|
|
"codeception/codeception": "^4.1",
|
|
"codeception/module-phpbrowser": "^1.0.0",
|
|
"codeception/module-asserts": "^1.0.0",
|
|
"weirdan/codeception-psalm-module": "^0.5.0",
|
|
"squizlabs/php_codesniffer": "*",
|
|
"slevomat/coding-standard": "^6.2"
|
|
}
|
|
}
|