-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
48 lines (48 loc) · 1.11 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
{
"name": "tenancy/framework",
"description": "Creating multi tenant saas from your Laravel app with ease",
"keywords": ["laravel", "multi-tenant", "saas", "tenancy", "aws", "gce"],
"license": "MIT",
"require": {
"laravel/framework": "^7.0"
},
"autoload": {
"psr-4": {
"Tenancy\\": ""
}
},
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/tenancy"
},
{
"type": "github",
"url": "https://github.com/sponsors/tenancy"
}
],
"authors": [
{
"name": "Arlon Antonius",
"email": "[email protected]",
"homepage": "https://arlon.dev"
}
],
"scripts": {
"test": [
"vendor/bin/phpunit"
]
},
"extra": {
"laravel": {
"providers": [
"Tenancy\\Providers\\TenancyProvider"
],
"aliases": {
"Tenancy": "Tenancy\\Facades\\Tenancy"
}
}
},
"require-dev": {
}
}