-
Notifications
You must be signed in to change notification settings - Fork 104
/
composer.json
54 lines (54 loc) · 1.65 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
{
"name": "mmoreram/gearman-bundle",
"replace": {
"mmoreramerino/gearman-bundle": "dev-master"
},
"description": "Adds gearman support to your and Symfony4, Symfony5 project",
"keywords": ["gearman"],
"homepage": "https://github.com/mmoreram/GearmanBundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Marc Morera",
"email": "[email protected]"
},
{
"name": "Matt Daum",
"email": "[email protected]"
},
{
"name": "Symfony Community",
"homepage": "https://github.com/mmoreram/GearmanBundle/contributors"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-gearman": "*",
"doctrine/annotations": "^1.5",
"symfony/dependency-injection": "^4.0 || ^5.0 || ^6.0",
"symfony/yaml": "^4.4 || ^5.0 || ^6.0",
"symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
"symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
"symfony/console": "^4.4|| ^5.0 || ^6.0",
"symfony/config":"^4.4 || ^5.0 || ^6.0",
"symfony/finder": "^4.4 || ^5.0 || ^6.0",
"symfony/options-resolver":" ^4.4 || ^5.0 || ^6.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": "^9.5",
"phpstan/phpstan": "^1.4",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-symfony": "^1.1"
}
}