-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.13 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.13 KB
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
{
"name": "webdevvie/pheanstalk-task-queue-bundle",
"description": "A task queue / worker bundle for use with symfony2 and pda/pheanstalk",
"keywords": ["symfony", "beanstalkd", "bundle", "pheanstalk", "worker"],
"license": "Apache-2.0",
"authors": [
{
"name": "John Bakker",
"email": "me@johnbakker.name",
"homepage": "http://www.johnbakker.name"
}
],
"type": "symfony-bundle",
"minimum-stability": "dev",
"require": {
"php": ">=5.3.0",
"pda/pheanstalk": ">=2.1.0,<3.0-dev",
"jms/serializer-bundle": "~1.1.0",
"symfony/process":"~2.4",
"phploc/phploc": "*"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"squizlabs/php_codesniffer": "~1.4",
"phpmd/phpmd": "~1.5",
"pdepend/pdepend": "~1.1"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-0": { "Webdevvie\\PheanstalkTaskQueueBundle": "" }
},
"extra": {
"branch-alias": {
"dev-master": "0.4.3-dev"
}
},
"target-dir": "Webdevvie/PheanstalkTaskQueueBundle"
}