forked from usemarkup/php-rabbitmq-management-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 963 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
{
"name": "markup/rabbitmq-management-api",
"type": "library",
"description": "An object oriented wrapper for the RabbitMQ Management HTTP Api",
"homepage": "https://github.com/markup/php-rabbitmq-management-api",
"keywords": ["rest", "message queue", "rabbitmq"],
"license": "MIT",
"authors": [
{
"name": "Richard Fullmer",
"email": "[email protected]",
"homepage": "https://github.com/richardfullmer"
},
{
"name": "Calum Brodie",
"email": "[email protected]",
"homepage": "https://github.com/calumbrodie"
}
],
"require": {
"php": ">=5.6",
"guzzlehttp/guzzle": "~6.1"
},
"autoload": {
"psr-4": {
"Markup\\RabbitMq\\": [
"src/"
]
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}