forked from workbunny/webman-rabbitmq
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.25 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.25 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
{
"name": "workbunny/webman-rabbitmq",
"type": "library",
"license": "MIT",
"description": "Webman plugin workbunny/webman-rabbitmq",
"authors": [
{
"name": "chaz6chez",
"email": "chaz6chez1993@outlook.com",
"homepage": "https://chaz6chez.cn"
}
],
"support": {
"issues": "https://github.com/workbunny/webman-rabbitmq/issues",
"source": "https://github.com/workbunny/webman-rabbitmq"
},
"require": {
"php": "^8.1",
"workerman/rabbitmq": "^2.0",
"webman/console": "^2.0",
"psr/log": "^3.0"
},
"require-dev": {
"workerman/webman-framework": "^2.0",
"phpunit/phpunit": "^10.0",
"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"
}
},
"suggest": {
"revolt/event-loop": "supported Event/Fiber",
"ext-swoole": "supported Event/Swoole",
"ext-swow": "supported Event/Swow"
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"scripts": {
"test": "php tests/processes/tester.php start"
}
}