forked from mmoreram/GearmanBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (57 loc) · 1.64 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
52
53
54
55
56
57
58
59
{
"name": "mikaelkael/gearman-bundle",
"replace": {
"mmoreram/gearman-bundle": "dev-master",
"mmoreramerino/gearman-bundle": "dev-master"
},
"description": "Adds gearman support to your Symfony3 / Symfony4 project",
"keywords": ["gearman"],
"homepage": "https://github.com/mikaelkael/GearmanBundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Mickael Perraud",
"email": "[email protected]"
},
{
"name": "Marc Morera",
"email": "[email protected]"
},
{
"name": "Matt Daum",
"email": "[email protected]"
},
{
"name": "Symfony Community",
"homepage": "https://github.com/mkk/GearmanBundle/contributors"
}
],
"require": {
"php": ">=5.5.9",
"ext-gearman": "*",
"doctrine/doctrine-cache-bundle": "~1.0",
"doctrine/common": "~2.4",
"symfony/dependency-injection": "~3.0|~4.0",
"symfony/framework-bundle": "~3.0|~4.0",
"symfony/http-kernel": "~3.0|~4.0",
"symfony/console": "~3.0|~4.0",
"symfony/config": "~3.0|~4.0",
"symfony/finder": "~3.0|~4.0",
"symfony/options-resolver": "~3.0|~4.0",
"symfony/yaml": "~3.0|~4.0"
},
"target-dir": "Mkk/GearmanBundle",
"autoload": {
"psr-0": { "Mkk\\GearmanBundle": "" }
},
"minimum-stability": "stable",
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"require-dev": {
"phpunit/phpunit": "~4.8.35|~5.4.3|~6.4"
}
}