mirror of
https://github.com/danog/psalm-plugin-laravel.git
synced 2024-11-27 12:55:35 +01:00
53 lines
1.5 KiB
JSON
53 lines
1.5 KiB
JSON
{
|
|
"name": "psalm/plugin-laravel",
|
|
"description": "A Laravel plugin for Psalm",
|
|
"type": "psalm-plugin",
|
|
"require": {
|
|
"php": "^7.1.3|^8",
|
|
"ext-simplexml": "*",
|
|
"barryvdh/laravel-ide-helper": "^2.6",
|
|
"illuminate/container": "5.8.* || ^6.0 || ^7.0",
|
|
"illuminate/contracts": "5.8.* || ^6.0 || ^7.0",
|
|
"illuminate/database": "5.8.* || ^6.0 || ^7.0",
|
|
"illuminate/http": "5.8.* || ^6.0 || ^7.0",
|
|
"illuminate/support": "5.8.* || ^6.0 || ^7.0",
|
|
"vimeo/psalm": "^3.8.2 || dev-master",
|
|
"orchestra/testbench": "^3.8 || ^4.0 || ^5.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",
|
|
"@lint",
|
|
"@test"
|
|
],
|
|
"analyze": "psalm",
|
|
"lint": "phpcs",
|
|
"test": "codecept run"
|
|
},
|
|
"require-dev": {
|
|
"codeception/codeception": "^4.1",
|
|
"codeception/module-phpbrowser": "^1.0.0",
|
|
"codeception/module-asserts": "^1.0.0",
|
|
"weirdan/codeception-psalm-module": "^0.7.1",
|
|
"squizlabs/php_codesniffer": "*",
|
|
"slevomat/coding-standard": "^6.2"
|
|
}
|
|
}
|