forked from uecode/qpush-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·46 lines (46 loc) · 1.62 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
{
"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/dependency-injection": "~2.3|^3.0",
"symfony/config": "~2.3|^3.0",
"symfony/http-kernel": "~2.3|^3.0",
"symfony/console": "~2.3|^3.0",
"symfony/monolog-bundle": "~2.3|^3.0"
},
"require-dev": {
"phpunit/phpunit": "~3.7",
"aws/aws-sdk-php": "~2.5",
"iron-io/iron_mq": "^4.0",
"symfony/finder": "~2.3|^3.0",
"symfony/filesystem": "~2.3|^3.0"
},
"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",
"symfony/finder": "Required to use File as a Queue Provider",
"symfony/filesystem": "Required to use File as a Queue Provider"
},
"autoload": {
"psr-4": {
"Uecode\\Bundle\\QPushBundle\\": "src/"
}
}
}