-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.22 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
{
"name": "gitkv/laravel-gearman-rpc",
"type": "library",
"description": "Laravel/Lumen Gearman rpc. Based from https://github.com/mhlavac/gearman",
"keywords": ["php", "gearman", "job", "server", "workers", "supervisor", "Lumen", "Laravel", "rpc"],
"homepage": "https://github.com/gitkv/laravel-gearman-rpc#readme",
"license": "MIT",
"authors": [
{
"name": "Nikolay Volkov",
"email": "gitkv@ya.ru",
"homepage": "https://github.com/gitkv",
"role": "Creator"
}
],
"support": {
"issues": "https://github.com/gitkv/laravel-gearman-rpc/issues",
"source": "https://github.com/gitkv/laravel-gearman-rpc"
},
"require": {
"php": ">=7.1",
"mhlavac/gearman": "~0.1"
},
"autoload": {
"psr-4": {
"gitkv\\GearmanRpc\\": "src",
"gitkv\\GearmanRpc\\Examples\\": "Examples",
"gitkv\\GearmanRpc\\tests\\": "tests"
}
},
"suggest": {
"ext-gearman": "PHP Gearman extension for running worker"
},
"minimum-stability": "dev",
"prefer-stable": true,
"optimize-autoloader": true,
"require-dev": {
"phpunit/phpunit": "^7"
}
}