-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.04 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
{
"name": "jeffersonsimaogoncalves/cakephp-utility",
"description": "CakePHP 3 plugin to provide basic support for building REST API services",
"keywords": [
"cakephp",
"utils"
],
"type": "cakephp-plugin",
"homepage": "https://github.com/jeffersonsimaogoncalves/cakephp-utility",
"license": "MIT",
"authors": [
{
"name": "Jefferson Simão Gonçalves",
"homepage": "https://github.com/jeffersonsimaogoncalves",
"role": "Author"
}
],
"support": {
"issues": "https://github.com/jeffersonsimaogoncalves/cakephp-utility/issues",
"source": "https://github.com/jeffersonsimaogoncalves/cakephp-utility"
},
"require": {
"php": ">=7.0",
"airmanbzh/php-html-generator": "^1.0",
"cakephp/utility": "^3.0",
"league/fractal": ">=0.13.0"
},
"autoload": {
"psr-4": {
"JeffersonSimaoGoncalves\\Utility\\": "src"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true,
"htaccess-protect": true,
"optimize-autoloader": true
}
}