├── .gitignore ├── .php_cs.dist ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.md ├── README.md ├── VERSION ├── composer.json ├── docker-compose.yml ├── laravel ├── composer.json ├── config │ └── app.php └── tmp.env ├── src ├── A2WayLaravelTenantMigrateServiceProvider.php ├── Commands │ ├── InstallCommand.php │ ├── MigrateAllCommand.php │ ├── MigrateCommand.php │ ├── RefreshCommand.php │ ├── ResetCommand.php │ ├── RollbackCommand.php │ └── SeedCommand.php └── Helpers │ └── DbHelper.php └── tmp.env /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2way-com/laravel-tenant-migrate/HEAD/.gitignore -------------------------------------------------------------------------------- /.php_cs.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2way-com/laravel-tenant-migrate/HEAD/.php_cs.dist -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2way-com/laravel-tenant-migrate/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2way-com/laravel-tenant-migrate/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2way-com/laravel-tenant-migrate/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2way-com/laravel-tenant-migrate/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2way-com/laravel-tenant-migrate/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | v1.9.1 2 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2way-com/laravel-tenant-migrate/HEAD/composer.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2way-com/laravel-tenant-migrate/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /laravel/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2way-com/laravel-tenant-migrate/HEAD/laravel/composer.json -------------------------------------------------------------------------------- /laravel/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2way-com/laravel-tenant-migrate/HEAD/laravel/config/app.php -------------------------------------------------------------------------------- /laravel/tmp.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2way-com/laravel-tenant-migrate/HEAD/laravel/tmp.env -------------------------------------------------------------------------------- /src/A2WayLaravelTenantMigrateServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2way-com/laravel-tenant-migrate/HEAD/src/A2WayLaravelTenantMigrateServiceProvider.php -------------------------------------------------------------------------------- /src/Commands/InstallCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2way-com/laravel-tenant-migrate/HEAD/src/Commands/InstallCommand.php -------------------------------------------------------------------------------- /src/Commands/MigrateAllCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2way-com/laravel-tenant-migrate/HEAD/src/Commands/MigrateAllCommand.php -------------------------------------------------------------------------------- /src/Commands/MigrateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2way-com/laravel-tenant-migrate/HEAD/src/Commands/MigrateCommand.php -------------------------------------------------------------------------------- /src/Commands/RefreshCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2way-com/laravel-tenant-migrate/HEAD/src/Commands/RefreshCommand.php -------------------------------------------------------------------------------- /src/Commands/ResetCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2way-com/laravel-tenant-migrate/HEAD/src/Commands/ResetCommand.php -------------------------------------------------------------------------------- /src/Commands/RollbackCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2way-com/laravel-tenant-migrate/HEAD/src/Commands/RollbackCommand.php -------------------------------------------------------------------------------- /src/Commands/SeedCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2way-com/laravel-tenant-migrate/HEAD/src/Commands/SeedCommand.php -------------------------------------------------------------------------------- /src/Helpers/DbHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2way-com/laravel-tenant-migrate/HEAD/src/Helpers/DbHelper.php -------------------------------------------------------------------------------- /tmp.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2way-com/laravel-tenant-migrate/HEAD/tmp.env --------------------------------------------------------------------------------