forked from Phobetor/rabbitmq-supervisor-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 1.17 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
{
"name": "phobetor/rabbitmq-supervisor-bundle",
"type": "library",
"license": "MIT",
"description" : "Symfony bundle to automatically create and update supervisor configurations for RabbitMQ consumer daemons",
"keywords": [
"rabbitmq",
"supervisor",
"supervisord",
"symfony2",
"symfony3",
"symfony4"
],
"homepage": "https://github.com/Phobetor/rabbitmq-supervisor-bundle",
"authors": [
{
"name": "Andreas Kintzinger",
"homepage": "https://github.com/Phobetor/",
"role": "Developer"
}
],
"require": {
"symfony/framework-bundle": "~2.5|~3.0|~4.0",
"symfony/console": "~2.5|~3.0|~4.0",
"symfony/process": "~2.5|~3.0|~4.0"
},
"suggest": {
"php-amqplib/rabbitmq-bundle": "The rabbitmq bundle for symfony which this bundle takes the consumer information from",
"oldsound/rabbitmq-bundle": "The abandoned older version of php-amqplib/rabbitmq-bundle which also works"
},
"autoload": {
"psr-0": { "Phobetor\\RabbitMqSupervisorBundle\\": "" }
},
"target-dir": "Phobetor/RabbitMqSupervisorBundle"
}