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": {
|
2022-02-14 23:37:25 +01:00
|
|
|
"php": "^8.0",
|
2020-04-12 23:41:11 +02:00
|
|
|
"ext-simplexml": "*",
|
2022-02-14 23:37:25 +01:00
|
|
|
"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",
|
2022-02-14 23:37:25 +01:00
|
|
|
"orchestra/testbench": "^6.22 || ^7.0",
|
2022-02-14 23:33:05 +01:00
|
|
|
"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",
|
2022-03-20 23:10:08 +01:00
|
|
|
"codeception/module-cli": "^2.0",
|
2022-03-20 23:13:49 +01:00
|
|
|
"codeception/module-filesystem": "^3.0",
|
2022-03-20 23:10:08 +01:00
|
|
|
"codeception/module-phpbrowser": "*@dev",
|
|
|
|
"slevomat/coding-standard": "^6.2",
|
2022-04-26 14:26:19 +02:00
|
|
|
"squizlabs/php_codesniffer": "*",
|
|
|
|
"phpoption/phpoption": "^1.8.0"
|
2019-02-19 00:40:57 +01:00
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"Psalm\\LaravelPlugin\\": "src"
|
|
|
|
}
|
|
|
|
},
|
2020-06-07 04:26:46 +02:00
|
|
|
"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",
|
2020-04-12 23:40:34 +02:00
|
|
|
"@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"
|
|
|
|
}
|
2020-07-08 12:39:45 +02:00
|
|
|
},
|
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
|
|
|
}
|