-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
34 lines (34 loc) · 910 Bytes
/
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
{
"name": "hautelook/gearman-bundle",
"description": "Symfony2 Bundle that provides a service to submit Gearman jobs",
"keywords": ["Symfony2", "Gearman"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Baldur Rensch",
"email": "[email protected]"
},
{
"name": "Brandon Woodmansee",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.0",
"symfony/framework-bundle": "~2.1"
},
"require-dev": {
"symfony/browser-kit": "~2.1",
"symfony/form": "~2.1",
"symfony/yaml": "~2.1",
"symfony/class-loader": "~2.1"
},
"suggest": {
"ext-gearman": "The PECL Gearman extension"
},
"autoload": {
"psr-0": { "Hautelook\\GearmanBundle": "" }
},
"target-dir": "Hautelook/GearmanBundle"
}