forked from prolic/HumusAmqpModule
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.33 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.33 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
{
"name": "prolic/humus-amqp-module",
"type": "library",
"description": "AMQP module for Zend Framework 2 to integrate RabbitMQ",
"keywords": ["zf2", "rabbit", "rabbitmq", "queue", "amqp", "humus"],
"homepage": "https://github.com/prolic/HumusAmqpModule",
"license": "MIT",
"authors": [
{
"name": "Sascha-Oliver Prolic",
"email": "saschaprolic@googlemail.com"
}
],
"require": {
"php": ">=5.4.0",
"ext-amqp" : ">=1.4.0",
"zendframework/zend-console": ">=2.3.0",
"zendframework/zend-eventmanager": ">=2.3.0",
"zendframework/zend-mvc": ">=2.3.0",
"zendframework/zend-modulemanager": ">=2.3.0",
"zendframework/zend-servicemanager": ">=2.3.0",
"zendframework/zend-text": ">=2.3.0"
},
"require-dev": {
"phpunit/PHPUnit": ">=4.0",
"squizlabs/php_codesniffer": "1.5.*",
"zendframework/zendframework": ">=2.3.0",
"mockery/mockery": "@stable",
"prolic/humus-supervisor-module": "dev-master",
"empi89/php-amqp-stubs": "dev-master"
},
"suggest": {
"prolic/humus-supervisor-module": "For supervisor usage",
"ext-pcntl": "For process control management"
},
"autoload": {
"psr-0": {
"HumusAmqpModule": "src"
}
}
}