-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
34 lines (34 loc) · 894 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": "metfan/rabbit-setup",
"license": "MIT",
"type": "project",
"description": "Tools to ease creation of exchanges, queues, parameters on rabbitMQ",
"keywords": ["rabbitmq", "api", "setup"],
"authors": [
{
"name": "Ulrich",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Metfan\\": "src/Metfan/"
},
"exclude-from-classmap": ["**/Tests/"]
},
"require": {
"php": ">=7.1.0",
"symfony/console": "^4.1",
"symfony/yaml": "^4.1",
"monolog/monolog": "1.23",
"symfony/var-dumper": "~4.1",
"pimple/pimple": "~3.2",
"symfony/config": "~4.1"
},
"bin": ["rabbit-setup"],
"require-dev": {
"phpunit/phpunit": "^7.3",
"symfony/phpunit-bridge": "^4.1",
"symfony/finder": "^4.1"
}
}