forked from webdevvie/pheanstalk-task-queue-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1.03 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": "webdevvie/pheanstalk-task-queue-bundle",
"description": "A task queue / worker bundle for use with symfony2, leezy/pheanstalk and pda/pheanstalk",
"keywords": ["symfony", "beanstalkd", "bundle", "pheanstalk", "worker"],
"license": "Apache-2.0",
"authors": [
{
"name": "John Bakker",
"email": "[email protected]",
"homepage": "http://www.johnbakker.name"
}
],
"type": "symfony-bundle",
"minimum-stability": "dev",
"require": {
"php": ">=5.3.0",
"leezy/pheanstalk-bundle": "2.*",
"jms/serializer-bundle": "0.13.*"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"squizlabs/php_codesniffer": "~1.4",
"phpmd/phpmd": "~1.5"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-0": { "Webdevvie\\PheanstalkTaskQueueBundle": "" }
},
"extra": {
"branch-alias": {
"dev-master": "0.2-dev"
}
},
"target-dir": "Webdevvie/PheanstalkTaskQueueBundle"
}