psalm-plugin-laravel/composer.json

72 lines
2.0 KiB
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",
2021-10-08 12:54:09 +02:00
"homepage": "https://github.com/psalm/psalm-plugin-laravel",
"license": "MIT",
"authors": [
{
"name": "Matthew Brown",
"email": "github@muglug.com"
}
],
2019-02-19 00:40:57 +01:00
"require": {
"php": "^8.0",
2020-04-12 23:41:11 +02:00
"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",
2021-06-22 01:05:24 +02:00
"vimeo/psalm": "^4.8.1",
"orchestra/testbench": "^6.22 || ^7.0",
"barryvdh/laravel-ide-helper": "^2.10"
2019-02-19 00:40:57 +01:00
},
2021-10-08 12:54:09 +02:00
"require-dev": {
"codeception/codeception": "^4.1.6",
"codeception/module-phpbrowser": "^1.0.0",
"codeception/module-asserts": "^1.0.0",
"weirdan/codeception-psalm-module": "^0.13.1",
"squizlabs/php_codesniffer": "*",
"slevomat/coding-standard": "^6.2"
2019-02-19 00:40:57 +01:00
},
"autoload": {
"psr-4": {
"Psalm\\LaravelPlugin\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Psalm\\LaravelPlugin\\": "tests"
}
},
2020-04-08 09:28:39 +02:00
"scripts": {
2021-10-08 12:54:09 +02:00
"analyze": "psalm",
"lint": "phpcs -n",
"lint-fix": "phpcbf -n",
"test": "codecept run --skip-group skip",
2019-02-19 00:40:57 +01:00
"check": [
2020-04-12 20:55:32 +02:00
"@analyze",
"@lint",
"@test"
2021-10-08 12:54:09 +02:00
]
2020-04-08 09:28:39 +02:00
},
2021-10-08 12:54:09 +02:00
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
},
"psalm": {
"pluginClass": "Psalm\\LaravelPlugin\\Plugin"
}
},
2021-10-08 12:47:48 +02:00
"config": {
"sort-packages": true
},
2022-01-19 00:59:32 +01:00
"minimum-stability": "dev",
"prefer-stable": true
2019-02-19 00:40:57 +01:00
}