-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
51 lines (44 loc) · 1.29 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": "supertag/gearman-bundle",
"type": "symfony-bundle",
"description": "Gearman bundle for Symfony2 to manage and monitor PHP gearman jobs and queue",
"keywords": ["gearman", "php", "job", "symfony2", "bundle", "queue", "supertag"],
"homepage": "http://github.com/supertag/GearmanBundle",
"license": "MIT",
"authors": [
{
"name": "Supertag Team",
"homepage": "http://supertag.datalicious.com"
},
{
"name": "Symfony2 Community",
"homepage": "http://github.com/supertag/GearmanBundle/contributors"
}
],
"require": {
"php": ">=5.3.3",
"symfony/framework-bundle": "~2.1",
"symfony/event-dispatcher": "~2.1",
"symfony/process": "~2.1",
"symfony/console": "~2.1",
"necromant2005/gearman-stats": "1.0.*"
},
"require-dev": {
"symfony/symfony": "2.2.*",
"symfony/monolog-bundle": "2.2.*"
},
"suggest": {
"ext-gearman": "The PECL Gearman extension"
},
"autoload": {
"psr-0": {
"Supertag\\Bundle\\GearmanBundle": ""
}
},
"target-dir": "Supertag/Bundle/GearmanBundle",
"extra": {
"branch-alias": {
"dev-master": "0.2.x-dev"
}
}
}