-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
108 lines (108 loc) · 2.99 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"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": "[email protected]",
"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
}