-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
55 lines (55 loc) · 1.47 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
{
"name": "huangdijia/laravel-horizon-restart",
"description": "Horizon Restart for Laravel.",
"type": "library",
"keywords": [
"laravel",
"horizon"
],
"homepage": "https://github.com/huangdijia/laravel-horizon-restart",
"license": "MIT",
"authors": [{
"name": "huangdijia",
"email": "[email protected]"
}],
"require": {
"php": ">=8.1",
"illuminate/support": "^10.0|^11.0",
"illuminate/console": "^10.0|^11.0",
"illuminate/bus": "^10.0|^11.0",
"laravel/horizon": "^5.0|^6.0"
},
"require-dev": {
"phpstan/phpstan": "^1.0",
"laravel/framework": "^10.0|^11.0",
"pestphp/pest":"^2.0",
"pestphp/pest-plugin-laravel": "^2.0",
"huangdijia/php-coding-standard": "^1.2"
},
"autoload": {
"psr-4": {
"Huangdijia\\Horizon\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-main": "3.0-dev"
},
"laravel": {
"providers": [
"Huangdijia\\Horizon\\RestartServiceProvider"
]
}
},
"minimum-stability": "dev",
"scripts": {
"analyse": "@php vendor/bin/phpstan analyse --memory-limit 300M -l 0 -c phpstan.neon ./src",
"cs-fix": "@php vendor/bin/php-cs-fixer fix $1",
"test": "@php vendor/bin/pest"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}