-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.92 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.92 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "hypervel/queue",
"description": "The queue package for Hypervel.",
"license": "MIT",
"keywords": [
"php",
"hyperf",
"queue",
"swoole",
"hypervel"
],
"support": {
"issues": "https://github.com/hypervel/components/issues",
"source": "https://github.com/hypervel/components"
},
"authors": [
{
"name": "Albert Chen",
"email": "albert@hypervel.org"
}
],
"require": {
"php": "^8.2",
"hyperf/coroutine": "~3.1.0",
"hyperf/coordinator": "~3.1.0",
"hyperf/contract": "~3.1.0",
"hyperf/support": "~3.1.0",
"hyperf/collection": "~3.1.0",
"hyperf/tappable": "~3.1.0",
"hyperf/db-connection": "~3.1.0",
"laravel/serializable-closure": "^1.2.2",
"ramsey/uuid": "^4.7",
"symfony/process": "^7.0",
"hypervel/core": "^0.3",
"hypervel/support": "^0.3",
"hypervel/encryption": "^0.3"
},
"autoload": {
"psr-4": {
"Hypervel\\Queue\\": "src/"
}
},
"extra": {
"hyperf": {
"config": "Hypervel\\Queue\\ConfigProvider"
},
"branch-alias": {
"dev-main": "0.3-dev"
}
},
"suggest": {
"ext-pdo": "Required to use the database queue worker.",
"ext-filter": "Required to use the SQS queue worker.",
"ext-mbstring": "Required to use the database failed job providers.",
"ext-pcntl": "Required to use all features of the queue worker.",
"ext-posix": "Required to use all features of the queue worker.",
"aws/aws-sdk-php": "Required to use the SQS queue driver and DynamoDb failed job storage (^3.235.5).",
"pda/pheanstalk": "Required to use the Beanstalk queue driver (^5.0.6|^7.0.0)."
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev"
}