forked from pronique/multitenant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·50 lines (49 loc) · 1021 Bytes
/
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":"murilowlima/multitenant",
"version": "0.8.1",
"description":"MultiTenant CakePHP Plugin - Use this plugin to easily build SaaS enabled web applications.",
"type":"cakephp-plugin",
"keywords":[
"cakephp",
"cakephp3",
"cake3",
"plugin",
"cakephp-plugin",
"saas",
"multitenant",
"multi-tenant",
"subdomain",
"cake",
"murilowlima"
],
"homepage":"https://github.com/murilowlima/multitenant",
"license":"MIT",
"authors":[
{
"name":"Jonathan Cutrer",
"role":"Author",
"homepage":"http://github.com/joncutrer"
}
],
"require":{
"cakephp/plugin-installer":"*"
},
"require-dev": {
"cakephp/cakephp": "3.0.*-dev"
},
"suggest":{
},
"autoload": {
"psr-4": {
"MultiTenant\\": "src",
"MultiTenant\\Test\\": "tests"
}
},
"support":{
"source":"https://github.com/murilowlima/multitenant",
"issues":"https://github.com/murilowlima/multitenant/issues"
},
"extra": {
"installer-name": "MultiTenant"
}
}