forked from vishal2995/cakephp-rest-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.25 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": "jeffersonsimaogoncalves/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/jeffersonsimaogoncalves/cakephp-rest-api",
"license": "MIT",
"authors": [
{
"name": "Multidots",
"homepage": "http://www.multidots.com",
"role": "Author"
},
{
"name": "Community",
"homepage": "https://github.com/multidots/cakephp-rest-api/graphs/contributors"
},
{
"name": "Jefferson Simão Gonçalves",
"homepage": "https://github.com/jeffersonsimaogoncalves",
"role": "Author"
}
],
"support": {
"issues": "https://github.com/jeffersonsimaogoncalves/cakephp-rest-api/issues",
"source": "https://github.com/jeffersonsimaogoncalves/cakephp-rest-api"
},
"require": {
"php": "^7.2",
"cakephp/cakephp": "^4.0",
"firebase/php-jwt": ">=v4.0.0",
"league/fractal": ">=0.13.0"
},
"autoload": {
"psr-4": {
"RestApi\\": "src"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true,
"htaccess-protect": true,
"optimize-autoloader": true
}
}