-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
48 lines (46 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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "boekkooi/amqp-bundle",
"description": "A AMQP bundle using tactician and php-amqp",
"license": "MIT",
"keywords": ["amqp", "tactician", "rabbitmq", "symfony"],
"homepage": "http://tactician.thephpleague.com",
"authors": [
{
"name": "Warnar Boekkooi",
"email": "[email protected]"
}
],
"require": {
"symfony/framework-bundle": "~2.3|~3.0",
"symfony/yaml": "~2.3|~3.0",
"symfony/serializer": "~2.3|~3.0",
"symfony/console": "~2.3|~3.0",
"symfony/dependency-injection": "~2.3,>=2.3.3|~3.0",
"league/tactician-bundle": "^0.3|^0.4",
"boekkooi/tactician-amqp": "^0.3"
},
"require-dev": {
"symfony/finder": "~2.3|~3.0",
"phpunit/phpunit": "~4.8",
"mockery/mockery": "~0.9, >= 0.9.4",
"matthiasnoback/symfony-config-test": "~1.1",
"matthiasnoback/symfony-dependency-injection-test": "^0.7"
},
"autoload": {
"psr-4": {
"Boekkooi\\Bundle\\AMQP\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Boekkooi\\Bundle\\AMQP\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.2-dev"
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}