-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.08 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
{
"name" : "smartsolutionsitaly/cakephp-manifest",
"description" : "Manifest support for CakePHP",
"keywords" : [
"cakephp",
"controller",
"manifest"
],
"type" : "cakephp-plugin",
"license" : "MIT",
"require-dev" : {
"php" : ">=7.0",
"cakephp/cakephp" : "^3.6",
"smartsolutionsitaly/cakephp-marketplace" : "^1.0"
},
"autoload" : {
"psr-4" : {
"SmartSolutionsItaly\\CakePHP\\Manifest\\" : "src"
}
},
"autoload-dev" : {
"psr-4" : {
"SmartSolutionsItaly\\CakePHP\\Manifest\\Test\\" : "tests",
"Cake\\Test\\" : "./vendor/cakephp/cakephp/tests"
}
},
"homepage" : "https://github.com/smartsolutionsitaly/cakephp-manifest",
"authors" : [{
"name" : "Lucio Benini",
"email" : "dev@smartsolutions.it",
"homepage" : "https://smartsolutions.it",
"role" : "Web Developer"
}
],
"support" : {
"email" : "info@smartsolutions.it",
"issues" : "https://github.com/smartsolutionsitaly/cakephp-manifest/issues",
"wiki" : "https://github.com/smartsolutionsitaly/cakephp-manifest/wiki",
"source" : "https://github.com/smartsolutionsitaly/cakephp-manifest"
}
}