-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathcomposer.json
44 lines (44 loc) · 1.27 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
{
"name": "multidots/cakephp-rest-api",
"description": "CakePHP 3 plugin to provide basic support for building REST API services",
"keywords": ["cakephp", "rest", "api"],
"type": "cakephp-plugin",
"homepage": "https://github.com/cakephp/debug_kit",
"license": "MIT",
"authors": [
{
"name": "Multidots",
"homepage": "http://www.multidots.com",
"role": "Author"
},
{
"name": "Community",
"homepage": "https://github.com/multidots/cakephp-rest-api/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/multidots/cakephp-rest-api/issues",
"source": "https://github.com/multidots/cakephp-rest-api"
},
"require": {
"php": ">=5.5.9",
"cakephp/cakephp": ">=3.3.2 <4.0.0",
"firebase/php-jwt": "^4.0"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "dev-master",
"phpunit/phpunit": "4.1.*"
},
"autoload": {
"psr-4": {
"RestApi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"RestApi\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests",
"TestApp\\": "tests/test_app/TestApp"
}
}
}