-
Notifications
You must be signed in to change notification settings - Fork 42
/
composer.json
37 lines (37 loc) · 1.18 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
{
"name": "phobetor/rabbitmq-supervisor-bundle",
"type": "symfony-bundle",
"license": "MIT",
"description" : "Symfony bundle to automatically create and update supervisor configurations for RabbitMQ consumer daemons",
"keywords": [
"rabbitmq",
"supervisor",
"supervisord",
"symfony2",
"symfony3",
"symfony4",
"symfony5"
],
"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|~5.0",
"symfony/console": "~2.5|~3.0|~4.0|~5.0",
"symfony/process": "~2.5|~3.0|~4.0|~5.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-4": {
"Phobetor\\RabbitMqSupervisorBundle\\": ""
}
}
}