-
Notifications
You must be signed in to change notification settings - Fork 54
/
composer.json
executable file
·51 lines (51 loc) · 1.88 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
49
50
51
{
"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.6.0",
"doctrine/common": "~2.4",
"symfony/dependency-injection": "~2.3|^3.0|^4.0",
"symfony/config": "~2.3|^3.0|^4.0",
"symfony/http-kernel": "~2.3|^3.0|^4.0",
"symfony/console": "~2.3|^3.0|^4.0",
"symfony/monolog-bundle": "~2.3|^3.0|^4.0"
},
"require-dev": {
"aws/aws-sdk-php": "~2.5",
"iron-io/iron_mq": "^4.0",
"symfony/finder": "~2.3|^3.0|^4.0",
"symfony/filesystem": "~2.3|^3.0|^4.0",
"symfony/phpunit-bridge": "^4.0",
"symfony/yaml": "~2.8|^3.0|^4.0",
"doctrine/orm": "^2.4.8",
"stof/doctrine-extensions-bundle": "^1.2"
},
"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",
"doctrine/orm": "Required to use Doctrine as a Queue Provider",
"stof/doctrine-extensions-bundle": "Required to use Doctrine as a Queue Provider"
},
"autoload": {
"psr-4": {
"Uecode\\Bundle\\QPushBundle\\": "src/"
}
}
}