forked from CakeDC/cakephp-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.23 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
{
"name": "cakedc/cakephp-api",
"description": "Api plugin for CakePHP",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"api",
"rest",
"hateoas",
"crud"
],
"homepage": "https://github.com/CakeDC/cakephp-api",
"license": "MIT",
"authors": [
{
"name": "CakeDC",
"homepage": "http://www.cakedc.com",
"role": "Author"
},
{
"name": "Others",
"homepage": "https://github.com/CakeDC/cakephp-api/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/CakeDC/cakephp-api/issues",
"source": "https://github.com/CakeDC/cakephp-api"
},
"require": {
"php": ">=5.6",
"cakephp/cakephp": "^3.7",
"cakedc/users": "^8.0"
},
"require-dev": {
"phpunit/phpunit": "^6",
"league/flysystem-vfs": "^1.0"
},
"autoload": {
"psr-4": {
"CakeDC\\Api\\": "src",
"CakeDC\\Api\\Test\\Fixture\\": "tests\\Fixture"
}
},
"autoload-dev": {
"psr-4": {
"CakeDC\\Api\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
}
}