forked from prolic/HumusAmqpModule
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (38 loc) · 1.11 KB
/
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
{
"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": "[email protected]"
}
],
"require": {
"php": "^7.4",
"prolic/humus-amqp" : "^2.0",
"psr/container": "^1.0",
"sandrokeil/interop-config": "^1.0 || ^2.0",
"symfony/console": "^4.3|^5.0",
"zendframework/zend-modulemanager": "^2.8.4",
"zendframework/zend-mvc": "^2.7.15"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16.1",
"phpunit/phpunit": "^9.0",
"prooph/php-cs-fixer-config": "^0.3",
"php-coveralls/php-coveralls": "^2.1"
},
"autoload": {
"psr-4": {
"HumusAmqpModule\\": "src/",
"HumusAmqpModuleTest\\": "tests/"
}
},
"bin": [
"bin/humus-amqp-module"
]
}