-
Notifications
You must be signed in to change notification settings - Fork 37
/
composer.json
34 lines (34 loc) · 1005 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
{
"name": "richardfullmer/rabbitmq-management-api",
"type": "library",
"description": "An object oriented wrapper for the RabbitMQ Management HTTP Api",
"homepage": "https://github.com/richardfullmer/php-rabbitmq-management-api",
"keywords": ["rest", "message queue", "rabbitmq"],
"license": "MIT",
"authors": [
{
"name": "Richard Fullmer",
"email": "[email protected]",
"homepage": "https://github.com/richardfullmer"
}
],
"require": {
"php": ">=5.4",
"psr/http-message": "^1.0",
"php-http/client-implementation": "^1.0",
"php-http/client-common": "^1.0",
"php-http/httplug": "^1.0",
"php-http/message-factory": "^1.0",
"php-http/discovery": "^1.0"
},
"autoload": {
"psr-4": {
"RabbitMq\\ManagementApi\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}