-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
51 lines (51 loc) · 1.32 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
{
"name": "cvo-technologies/cakephp-gearman",
"description": "A gearman plugin for CakePHP 3",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"CVO-technologies",
"gearman",
"workers",
"jobs"
],
"homepage": "https://github.com/cvo-technologies/cakephp-gearman",
"license": "MIT",
"authors": [
{
"name": "Wouter van Os",
"homepage": "http://wouter0100.nl",
"role": "Author"
},
{
"name": "Marlin Cremers",
"homepage": "https://cvo-technologies.com/",
"role": "Author"
}
],
"support": {
"issues": "https://github.com/cvo-technologies/cakephp-gearman/issues",
"source": "https://github.com/cvo-technologies/cakephp-gearman"
},
"require": {
"php": ">=5.5.9",
"ext-gearman": "*",
"cakephp/cakephp": "~3.2"
},
"require-dev": {
"phpunit/phpunit": "4.1.*",
"cakephp/debug_kit": "~3.2",
"cakephp/cakephp-codesniffer": "2.*"
},
"autoload": {
"psr-4": {
"CvoTechnologies\\Gearman\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"TestApp\\": "tests/TestApp/src",
"CvoTechnologies\\Gearman\\Test\\": "tests"
}
}
}