-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
42 lines (42 loc) · 954 Bytes
/
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
{
"name": "workbunny/webman-rabbitmq",
"type": "library",
"license": "MIT",
"description": "Webman plugin workbunny/webman-rabbitmq",
"authors": [
{
"name": "chaz6chez",
"email": "[email protected]",
"homepage": "https://chaz6chez.cn"
}
],
"support": {
"issues": "https://github.com/workbunny/webman-rabbitmq/issues",
"source": "https://github.com/workbunny/webman-rabbitmq"
},
"require": {
"php": "^8.0",
"workerman/rabbitmq": "^1.0",
"webman/console": "^1.0"
},
"require-dev": {
"workerman/webman-framework": "^1.3",
"phpunit/phpunit": "^9.6",
"guzzlehttp/guzzle": "^7.9",
"symfony/var-dumper": "^6.0 | ^7.0"
},
"autoload": {
"psr-4": {
"Workbunny\\WebmanRabbitMQ\\": "src"
},
"files": [
"./src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Workbunny\\Tests\\": "tests",
"process\\": "process"
}
}
}