├── canvas.yaml ├── composer.json ├── config └── config.php └── src ├── CommandServiceProvider.php ├── Console ├── BaseCommand.php ├── InstallCommand.php ├── MigrateCommand.php ├── MigrateMakeCommand.php ├── QueuedCommand.php ├── RefreshCommand.php ├── ResetCommand.php ├── RollbackCommand.php └── TinkerCommand.php ├── Contracts ├── Factory.php ├── Notice.php └── TenantProvider.php ├── Eloquent ├── Builder.php ├── Model.php └── Tenantee.php ├── Jobs ├── CreateTenant.php ├── DeleteTenant.php ├── Job.php └── Queueable │ └── CreateTenant.php ├── Migration.php ├── Migrator ├── Factory.php ├── MigrationWriter.php ├── Migrator.php ├── Notable.php ├── Operation.php └── stubs │ ├── migration.create.stub │ ├── migration.stub │ └── migration.update.stub ├── Notice └── Command.php ├── Observer.php ├── TenantiManager.php ├── TenantiServiceProvider.php └── Tenantor.php /canvas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/canvas.yaml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/composer.json -------------------------------------------------------------------------------- /config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/config/config.php -------------------------------------------------------------------------------- /src/CommandServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/CommandServiceProvider.php -------------------------------------------------------------------------------- /src/Console/BaseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/Console/BaseCommand.php -------------------------------------------------------------------------------- /src/Console/InstallCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/Console/InstallCommand.php -------------------------------------------------------------------------------- /src/Console/MigrateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/Console/MigrateCommand.php -------------------------------------------------------------------------------- /src/Console/MigrateMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/Console/MigrateMakeCommand.php -------------------------------------------------------------------------------- /src/Console/QueuedCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/Console/QueuedCommand.php -------------------------------------------------------------------------------- /src/Console/RefreshCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/Console/RefreshCommand.php -------------------------------------------------------------------------------- /src/Console/ResetCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/Console/ResetCommand.php -------------------------------------------------------------------------------- /src/Console/RollbackCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/Console/RollbackCommand.php -------------------------------------------------------------------------------- /src/Console/TinkerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/Console/TinkerCommand.php -------------------------------------------------------------------------------- /src/Contracts/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/Contracts/Factory.php -------------------------------------------------------------------------------- /src/Contracts/Notice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/Contracts/Notice.php -------------------------------------------------------------------------------- /src/Contracts/TenantProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/Contracts/TenantProvider.php -------------------------------------------------------------------------------- /src/Eloquent/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/Eloquent/Builder.php -------------------------------------------------------------------------------- /src/Eloquent/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/Eloquent/Model.php -------------------------------------------------------------------------------- /src/Eloquent/Tenantee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/Eloquent/Tenantee.php -------------------------------------------------------------------------------- /src/Jobs/CreateTenant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/Jobs/CreateTenant.php -------------------------------------------------------------------------------- /src/Jobs/DeleteTenant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/Jobs/DeleteTenant.php -------------------------------------------------------------------------------- /src/Jobs/Job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/Jobs/Job.php -------------------------------------------------------------------------------- /src/Jobs/Queueable/CreateTenant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/Jobs/Queueable/CreateTenant.php -------------------------------------------------------------------------------- /src/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/Migration.php -------------------------------------------------------------------------------- /src/Migrator/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/Migrator/Factory.php -------------------------------------------------------------------------------- /src/Migrator/MigrationWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/Migrator/MigrationWriter.php -------------------------------------------------------------------------------- /src/Migrator/Migrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/Migrator/Migrator.php -------------------------------------------------------------------------------- /src/Migrator/Notable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/Migrator/Notable.php -------------------------------------------------------------------------------- /src/Migrator/Operation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/Migrator/Operation.php -------------------------------------------------------------------------------- /src/Migrator/stubs/migration.create.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/Migrator/stubs/migration.create.stub -------------------------------------------------------------------------------- /src/Migrator/stubs/migration.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/Migrator/stubs/migration.stub -------------------------------------------------------------------------------- /src/Migrator/stubs/migration.update.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/Migrator/stubs/migration.update.stub -------------------------------------------------------------------------------- /src/Notice/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/Notice/Command.php -------------------------------------------------------------------------------- /src/Observer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/Observer.php -------------------------------------------------------------------------------- /src/TenantiManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/TenantiManager.php -------------------------------------------------------------------------------- /src/TenantiServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/TenantiServiceProvider.php -------------------------------------------------------------------------------- /src/Tenantor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/tenanti/HEAD/src/Tenantor.php --------------------------------------------------------------------------------