-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 1.28 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
{
"name": "Westwing-Home-and-Living/Amqp",
"description": "Provide interfaces for sending messages between systems, initially for AMQP based drivers",
"keywords": ["amqp", "RabbitMQ", "messaging-queue"],
"homepage": "http://www.westwing.de",
"version": "1.0.5",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Cristian Datculescu",
"email": "[email protected]"
},
{
"name": "Josemi Liébana",
"email": "[email protected]"
}
],
"require": {
"php" : ">=5.3.0",
"symfony/dependency-injection" : "^2.3.0",
"symfony/config" : "^2.6.0",
"symfony/yaml" : ">=2.6 <=3.0"
},
"require-dev": {
"phpunit/phpunit" : "3.7.*",
"phpunit/dbunit" : "1.2.*",
"phpunit/php-invoker" : "1.1.*",
"phpunit/phpunit-selenium" : "1.3.*",
"phpunit/phpunit-story" : "1.0.*"
},
"suggest": {
"ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)"
},
"autoload": {
"psr-0": {"Amqp": "src/"}
}
}