-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.19 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" : "smartsolutionsitaly/cakephp-marketplace",
"description" : "Helpers for marketplaces.",
"keywords" : [
"cakephp",
"marketplace"
],
"type" : "cakephp-plugin",
"license" : "MIT",
"require" : {
"php": "^7.0",
"ext-intl" : "*",
"smartsolutionsitaly/cakephp-locale-type" : "^1.0"
},
"require-dev" : {
"cakephp/cakephp" : "^3.6"
},
"autoload" : {
"psr-4" : {
"SmartSolutionsItaly\\CakePHP\\Marketplace\\" : "src"
}
},
"autoload-dev" : {
"psr-4" : {
"SmartSolutionsItaly\\CakePHP\\Marketplace\\Test\\" : "tests",
"Cake\\Test\\" : "./vendor/cakephp/cakephp/tests"
}
},
"homepage" : "https://github.com/smartsolutionsitaly/cakephp-marketplace",
"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-marketplace/issues",
"wiki" : "https://github.com/smartsolutionsitaly/cakephp-marketplace/wiki",
"source" : "https://github.com/smartsolutionsitaly/cakephp-marketplace"
}
}