-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.26 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.26 KB
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
{
"name": "yangusik/laravel-balanced-queue",
"description": "Laravel queue management with load balancing between partitions (user groups)",
"keywords": ["laravel", "queue", "fair-queue", "balanced", "redis", "partitions"],
"license": "MIT",
"authors": [
{
"name": "YanGusik",
"homepage": "https://github.com/YanGusik"
}
],
"require": {
"php": "^8.1",
"illuminate/contracts": "^10.0|^11.0|^12.0",
"illuminate/queue": "^10.0|^11.0|^12.0",
"illuminate/redis": "^10.0|^11.0|^12.0",
"illuminate/support": "^10.0|^11.0|^12.0"
},
"require-dev": {
"orchestra/testbench": "^8.0|^9.0|^10.0",
"phpunit/phpunit": "^10.0|^11.0",
"mockery/mockery": "^1.6"
},
"autoload": {
"psr-4": {
"YanGusik\\BalancedQueue\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"YanGusik\\BalancedQueue\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"YanGusik\\BalancedQueue\\BalancedQueueServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}