psalm-plugin-laravel/composer.json
2022-02-14 23:59:04 +01:00

72 lines
2.0 KiB
JSON

{
"name": "psalm/plugin-laravel",
"description": "A Laravel plugin for Psalm",
"type": "psalm-plugin",
"homepage": "https://github.com/psalm/psalm-plugin-laravel",
"license": "MIT",
"authors": [
{
"name": "Matthew Brown",
"email": "github@muglug.com"
}
],
"require": {
"php": "^8.0",
"ext-simplexml": "*",
"illuminate/config": "^8.0 || ^9.0",
"illuminate/container": "^8.0 || ^9.0",
"illuminate/contracts": "^8.0 || ^9.0",
"illuminate/database": "^8.0 || ^9.0",
"illuminate/events": "^8.0 || ^9.0",
"illuminate/http": "^8.0 || ^9.0",
"illuminate/routing": "^8.0 || ^9.0",
"illuminate/support": "^8.0 || ^9.0",
"illuminate/view": "^8.0 || ^9.0",
"vimeo/psalm": "^4.8.1",
"orchestra/testbench": "^6.22 || ^7.0",
"barryvdh/laravel-ide-helper": "^2.10"
},
"require-dev": {
"codeception/codeception": "^5.0",
"codeception/module-phpbrowser": "^2.0",
"codeception/module-asserts": "^2.0",
"weirdan/codeception-psalm-module": "^0.13.1",
"squizlabs/php_codesniffer": "*",
"slevomat/coding-standard": "^6.2"
},
"autoload": {
"psr-4": {
"Psalm\\LaravelPlugin\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Psalm\\LaravelPlugin\\": "tests"
}
},
"scripts": {
"analyze": "psalm",
"lint": "phpcs -n",
"lint-fix": "phpcbf -n",
"test": "codecept run --skip-group skip",
"check": [
"@analyze",
"@lint",
"@test"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
},
"psalm": {
"pluginClass": "Psalm\\LaravelPlugin\\Plugin"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}