This repository has been archived by the owner on Apr 28, 2022. It is now read-only.
forked from mmoreram/GearmanBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (51 loc) · 1.47 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
{
"name": "mmoreram/gearman-bundle",
"replace": {
"mmoreramerino/gearman-bundle": "dev-master"
},
"description": "Adds gearman support to your Symfony2, Symfony3 and Symfony4 project",
"keywords": ["gearman"],
"homepage": "https://github.com/mmoreram/GearmanBundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Marc Morera",
"email": "yuhu@mmoreram.com"
},
{
"name": "Matt Daum",
"email": "matt@setfive.com"
},
{
"name": "Symfony Community",
"homepage": "https://github.com/mmoreram/GearmanBundle/contributors"
}
],
"require": {
"php": ">=5.3.3",
"ext-gearman": "*",
"doctrine/doctrine-cache-bundle": "~1.0",
"doctrine/common": "~2.2",
"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"
},
"target-dir": "Mmoreram/GearmanBundle",
"autoload": {
"psr-0": { "Mmoreram\\GearmanBundle": "" }
},
"minimum-stability": "stable",
"extra": {
"branch-alias": {
"dev-master": "4.0-dev"
}
},
"require-dev": {
"phpunit/phpunit": ">=4.8 <6.0"
}
}