- Changed namespace from Core\Core\Tenant to Core\Mod\Tenant - Moved src/ contents to root - Removed Host UK extension files (admin.php, MemberManager, TeamManager) - Fixed composer.json autoload paths
48 lines
1 KiB
JSON
48 lines
1 KiB
JSON
{
|
|
"name": "host-uk/core-tenant",
|
|
"description": "Multi-tenancy and workspaces for Laravel",
|
|
"keywords": [
|
|
"multi-tenant",
|
|
"workspaces",
|
|
"teams"
|
|
],
|
|
"license": "EUPL-1.2",
|
|
"require": {
|
|
"php": "^8.2",
|
|
"host-uk/core": "dev-main"
|
|
},
|
|
"require-dev": {
|
|
"laravel/pint": "^1.18",
|
|
"orchestra/testbench": "^9.0|^10.0",
|
|
"pestphp/pest": "^3.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Core\\Mod\\Tenant\\": ""
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Core\\Mod\\Tenant\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"Core\\Mod\\Tenant\\Boot"
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"lint": "pint",
|
|
"test": "pest"
|
|
},
|
|
"config": {
|
|
"sort-packages": true,
|
|
"allow-plugins": {
|
|
"pestphp/pest-plugin": true
|
|
}
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true
|
|
}
|