forked from uecode/qpush-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·39 lines (39 loc) · 1.26 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
{
"name": "uecode/qpush-bundle",
"type": "library",
"description": "Asynchronous processing for Symfony using Push Queues",
"keywords": ["qpush", "pub-sub", "aws", "iron mq", "asynch", "push", "symfony", "bundle" ],
"homepage": "https://github.com/uecode/qpush-bundle",
"license": "Apache 2.0",
"authors": [
{
"name": "Keith Kirk",
"email": "[email protected]",
"role": "developer",
"homepage": "http://undergroundelephant.com"
}
],
"support": {
"email": "[email protected]"
},
"require": {
"php": ">=5.4.0",
"doctrine/common": "~2.4",
"symfony/framework-bundle": "~2.3",
"symfony/monolog-bundle": "~2.3"
},
"require-dev": {
"phpunit/phpunit": "~3.7",
"aws/aws-sdk-php": "~2.5",
"iron-io/iron_mq": "~1.5"
},
"suggest": {
"aws/aws-sdk-php": "Required to use AWS as a Queue Provider",
"iron-io/iron_mq": "Required to use IronMQ as a Queue Provider"
},
"autoload": {
"psr-4": {
"Uecode\\Bundle\\QPushBundle\\": "src/"
}
}
}