├── .editorconfig.txt ├── .gitattributes.txt ├── .gitignore ├── .scrutinizer.yml ├── .styleci.yml ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── config ├── .gitkeep └── config.php ├── phpunit.xml.dist ├── src ├── .gitkeep ├── Commands │ └── BaseTenantableCommand.php ├── Exceptions │ ├── TenantDatabaseNotMigratedException.php │ └── TenantNotFoundException.php ├── Tenant.php ├── Tenant │ ├── Database.php │ └── Domain.php ├── TownhouseFacade.php ├── TownhouseServiceProvider.php └── helpers.php └── tests ├── .gitkeep └── ExampleTest.php /.editorconfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomschlick/townhouse/HEAD/.editorconfig.txt -------------------------------------------------------------------------------- /.gitattributes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomschlick/townhouse/HEAD/.gitattributes.txt -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /build 3 | composer.lock 4 | -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomschlick/townhouse/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomschlick/townhouse/HEAD/.styleci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomschlick/townhouse/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomschlick/townhouse/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomschlick/townhouse/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomschlick/townhouse/HEAD/composer.json -------------------------------------------------------------------------------- /config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/config.php: -------------------------------------------------------------------------------- 1 |