mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 11:14:04 +00:00
31 lines
763 B
JSON
31 lines
763 B
JSON
{
|
|
"name": "stancl/tenancy",
|
|
"description": "A Laravel multi-database tenancy implementation that respects your code.",
|
|
"keywords": ["laravel", "multi-tenancy", "multi-database", "tenancy"],
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Samuel Štancl",
|
|
"email": "samuel.stancl@gmail.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"illuminate/support": "^5.7",
|
|
"webpatser/laravel-uuid": "^3.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Stancl\\Tenancy\\": "src/"
|
|
},
|
|
"files": [
|
|
"src/helpers.php"
|
|
]
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"Stancl\\Tenancy\\TenancyServiceProvider"
|
|
]
|
|
}
|
|
}
|
|
}
|