-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1.04 KB
/
composer.json
File metadata and controls
37 lines (37 loc) · 1.04 KB
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": "cvo-technologies/cakephp-github",
"type": "cakephp-plugin",
"description": "CakePHP webservice implementation for GitHub",
"license": "MIT",
"authors": [
{
"name": "Marlin Cremers",
"email": "m.cremers@cvo-technologies.com",
"homepage": "https://cvo-technologies.com/"
}
],
"support": {
"issues": "https://github.com/CVO-Technologies/cakephp-github/issues",
"irc": "irc://irc.freenode.org/cvo-technologies",
"source": "https://github.com/CVO-Technologies/cakephp-github"
},
"require": {
"muffin/webservice": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^5.5",
"cakephp/cakephp": "^3.2",
"cakephp/cakephp-codesniffer": "^2.1",
"cvo-technologies/stream-emulation": "^1.0"
},
"autoload": {
"psr-4": {
"CvoTechnologies\\GitHub\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CvoTechnologies\\GitHub\\Test\\": "tests"
}
}
}