psalm-plugin-laravel/composer.json

53 lines
1.5 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",
"require": {
2020-04-12 23:41:11 +02:00
"php": "^7.1.3|^8",
"ext-simplexml": "*",
2020-05-27 08:44:09 +02:00
"barryvdh/laravel-ide-helper": "^2.7",
"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",
2020-05-27 08:44:09 +02:00
"vimeo/psalm": "^3.11.4 || dev-master",
"orchestra/testbench": "^3.8 || ^4.0 || ^5.0"
2019-02-19 00:40:57 +01:00
},
"license": "MIT",
"authors": [
{
"name": "Matthew Brown",
"email": "github@muglug.com"
}
],
"extra": {
"psalm": {
"pluginClass": "Psalm\\LaravelPlugin\\Plugin"
}
},
"autoload": {
"psr-4": {
"Psalm\\LaravelPlugin\\": "src"
}
},
2020-04-08 09:28:39 +02:00
"scripts": {
2019-02-19 00:40:57 +01:00
"check": [
2020-04-12 20:55:32 +02:00
"@analyze",
"@lint",
"@test"
2019-02-19 00:40:57 +01:00
],
2020-04-12 20:55:32 +02:00
"analyze": "psalm",
"lint": "phpcs",
"test": "codecept run"
2020-04-08 09:28:39 +02:00
},
"require-dev": {
2020-06-06 22:48:48 +02:00
"codeception/codeception": "4.1.x-dev#93a699972a8578bb463d8687b6c87ed7ebadf38a as 4.1.6",
2020-04-08 09:28:39 +02:00
"codeception/module-phpbrowser": "^1.0.0",
"codeception/module-asserts": "^1.0.0",
2020-05-03 19:45:19 +02:00
"weirdan/codeception-psalm-module": "^0.7.1",
2020-04-12 20:55:32 +02:00
"squizlabs/php_codesniffer": "*",
"slevomat/coding-standard": "^6.2"
2019-02-19 00:40:57 +01:00
}
}