-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
37 lines (37 loc) · 1.05 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
{
"name": "ideasbucket/queue-bundle",
"type": "ideasbucket-queue-bundle",
"description": "IdeasBucket QueueBundle for Symfony Framework",
"keywords": ["queue"],
"license": "MIT",
"support": {
"issues": "https://github.com/nicholasnet/QueueBundle/issues",
"source": "https://github.com/nicholasnet/QueueBundle"
},
"require": {
"php": ">=5.6.0",
"ext-mbstring": "*",
"ext-openssl": "*",
"symfony/framework-bundle": "^2.7 || ^3.0",
"symfony/console": "~2.5|~3.0",
"ideasbucket/common": "~1.1",
"psr/simple-cache": "1.0.0",
"symfony/process": "^2.7 || ^3.0"
},
"require-dev": {
"aws/aws-sdk-php": "~3.0",
"pda/pheanstalk": "~3.0",
"phpunit/phpunit": "~5.7",
"predis/predis": "~1.0",
"mockery/mockery": "~0.9.4"
},
"autoload": {
"psr-4": { "IdeasBucket\\QueueBundle\\": "src" }
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"prefer-stable": true
}