psalm-plugin-laravel/composer.json

78 lines
2.2 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": {
2022-02-14 23:59:04 +01:00
"codeception/codeception": "^5.0",
2022-03-20 23:04:38 +01:00
"codeception/module-asserts": "*@dev",
"codeception/module-cli": "^2.0",
"codeception/module-filesystem": "^3.0",
"codeception/module-phpbrowser": "*@dev",
"slevomat/coding-standard": "^6.2",
"squizlabs/php_codesniffer": "*",
"phpoption/phpoption": "^1.8.0"
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",
2022-03-20 23:02:31 +01:00
"analyse": "psalm",
2021-10-08 12:54:09 +02:00
"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": {
2022-03-20 22:52:33 +01:00
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
2021-10-08 12:47:48 +02:00
},
2022-01-19 00:59:32 +01:00
"minimum-stability": "dev",
"prefer-stable": true
2019-02-19 00:40:57 +01:00
}