109 lines
3.0 KiB
JSON
109 lines
3.0 KiB
JSON
{
|
|
"name": "qruto/laravel-flora",
|
|
"description": "Install and update Laravel application with single command",
|
|
"keywords": [
|
|
"qruto",
|
|
"laravel-flora",
|
|
"install",
|
|
"update",
|
|
"deploy",
|
|
"init",
|
|
"initialize",
|
|
"setup",
|
|
"exec",
|
|
"command",
|
|
"process",
|
|
"job",
|
|
"tasks"
|
|
],
|
|
"homepage": "https://github.com/qruto/laravel-flora",
|
|
"support": {
|
|
"issues": "https://github.com/qruto/laravel-wave/issues",
|
|
"source": "https://github.com/qruto/laravel-wave"
|
|
},
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Slava Razum",
|
|
"email": "razum@qruto.to",
|
|
"homepage": "https://github.com/slavarazum",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^8.1",
|
|
"illuminate/bus": "^10.0|^11.0",
|
|
"illuminate/config": "^10.0|^11.0",
|
|
"illuminate/console": "^10.0|^11.0",
|
|
"illuminate/container": "^10.0|^11.0",
|
|
"illuminate/support": "^10.0|^11.0",
|
|
"nunomaduro/laravel-desktop-notifier": "^2.8",
|
|
"spatie/laravel-package-tools": "^1.16"
|
|
},
|
|
"require-dev": {
|
|
"driftingly/rector-laravel": "^1.1",
|
|
"larastan/larastan": "^2.9",
|
|
"laravel/pint": "^v1.15",
|
|
"mockery/mockery": "^1.6",
|
|
"orchestra/canvas": "^8.12|^9.0",
|
|
"orchestra/testbench": "^8.0|^9.0",
|
|
"pestphp/pest": "^2.0",
|
|
"pestphp/pest-plugin-laravel": "^2.0",
|
|
"phpstan/extension-installer": "^1.3",
|
|
"phpstan/phpstan-deprecation-rules": "^1.1",
|
|
"phpstan/phpstan-phpunit": "^1.3",
|
|
"phpunit/phpunit": "^9.6|^10.0",
|
|
"rector/rector": "^1.0",
|
|
"spatie/laravel-ray": "^1.36"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Qruto\\Flora\\": "src"
|
|
},
|
|
"files": [
|
|
"src/helpers.php"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Qruto\\Flora\\Tests\\": "tests"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"post-autoload-dump": "@php ./vendor/bin/testbench package:discover --ansi",
|
|
"lint": "pint -v",
|
|
"refactor": "rector --debug",
|
|
"test-coverage": "pest --coverage --colors=always",
|
|
"test:refactor": "rector --dry-run",
|
|
"test:types": "phpstan analyse --ansi --memory-limit=-1",
|
|
"test:unit": "pest --colors=always",
|
|
"test:lint": "pint --test -v",
|
|
"test": [
|
|
"@test:lint",
|
|
"@test:refactor",
|
|
"@test:types",
|
|
"@test:unit"
|
|
],
|
|
"fix": [
|
|
"@refactor",
|
|
"@lint"
|
|
]
|
|
},
|
|
"config": {
|
|
"sort-packages": true,
|
|
"allow-plugins": {
|
|
"pestphp/pest-plugin": true,
|
|
"phpstan/extension-installer": true
|
|
}
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"Qruto\\Flora\\FloraServiceProvider"
|
|
]
|
|
}
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true
|
|
}
|