-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
54 lines (54 loc) · 1.36 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
{
"name": "losingbattle/rocketmq-http",
"description": "基于阿里云的rocketmq-http客户端及服务端封装",
"authors": [
{
"name": "cpj",
"email": "[email protected]"
}
],
"keywords": [
"php",
"hyperf",
"mq",
"rocketmq-http"
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"hyperf/di": "~3.1.0",
"hyperf/codec": "~3.1.0",
"hyperf/contract": "~3.1.0",
"hyperf/support": "~3.1.0",
"hyperf/coroutine": "~3.1.0",
"hyperf/collection": "~3.1.0",
"hyperf/guzzle": "~3.1.0",
"hyperf/process": "~3.1.0",
"psr/container": "^1.0|^2.0",
"psr/event-dispatcher": "^1.0",
"psr/log": "^1.0|^2.0|^3.0"
},
"suggest": {
"hyperf/di": "Required to use annotations.",
"hyperf/event": "Declare queue and start consumers automatically."
},
"autoload": {
"files": [
"src/Functions.php"
],
"psr-4": {
"Losingbattle\\RocketMqHttp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Losingbattle\\RocketMqHttp\\Test\\": "tests"
}
},
"extra": {
"hyperf": {
"config": "Losingbattle\\RocketMqHttp\\ConfigProvider"
}
}
}