-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
37 lines (37 loc) · 996 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
35
36
37
{
"name": "sinergi/gearman",
"type": "library",
"description": "PHP library for dispatching, handling and managing Gearman Workers",
"keywords": ["Gearman", "Workers", "Daemon", "Jobs", "Tasks"],
"homepage": "https://github.com/sinergi/gearman",
"license": "MIT",
"authors": [
{
"name": "Gabriel Bull",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"symfony/console": "2.*",
"react/event-loop": "0.4.*",
"psr/log": "~1"
},
"require-dev": {
"phpunit/phpunit": "~4"
},
"suggest": {
"ext-gearman": "This library needs Gearman"
},
"autoload": {
"psr-4": {
"Sinergi\\Gearman\\": "src/Gearman"
}
},
"autoload-dev": {
"psr-4": {
"Sinergi\\Gearman\\Tests\\": ["tests/Gearman/Tests", "tests/Gearman/Tests/_includes"]
}
},
"bin": ["bin/gearman", "bin/gearman.php"]
}