├── .gitignore ├── .travis.yml ├── composer.json ├── phpunit.xml ├── readme.md ├── src ├── DbExporter │ ├── Commands │ │ ├── CopyToRemoteCommand.php │ │ ├── GeneratorCommand.php │ │ ├── MigrationsGeneratorCommand.php │ │ └── SeedGeneratorCommand.php │ ├── DbExportHandler.php │ ├── DbExportHandlerServiceProvider.php │ ├── DbExporter.php │ ├── DbMigrations.php │ ├── DbMigrationsServiceProvider.php │ ├── DbSeeding.php │ ├── Exceptions │ │ └── InvalidDatabaseException.php │ ├── Facades │ │ ├── DbExportHandler.php │ │ └── DbMigrations.php │ ├── SeederHelper.php │ └── stubs │ │ ├── migration.stub │ │ └── seed.stub └── config │ └── db-exporter.php └── tests ├── .gitkeep ├── TestCase.php ├── Unit └── MigrateTest.php └── migrations └── 2017_10_02_124618_create_test_tables.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elimuswift/db-exporter/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elimuswift/db-exporter/HEAD/.travis.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elimuswift/db-exporter/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elimuswift/db-exporter/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elimuswift/db-exporter/HEAD/readme.md -------------------------------------------------------------------------------- /src/DbExporter/Commands/CopyToRemoteCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elimuswift/db-exporter/HEAD/src/DbExporter/Commands/CopyToRemoteCommand.php -------------------------------------------------------------------------------- /src/DbExporter/Commands/GeneratorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elimuswift/db-exporter/HEAD/src/DbExporter/Commands/GeneratorCommand.php -------------------------------------------------------------------------------- /src/DbExporter/Commands/MigrationsGeneratorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elimuswift/db-exporter/HEAD/src/DbExporter/Commands/MigrationsGeneratorCommand.php -------------------------------------------------------------------------------- /src/DbExporter/Commands/SeedGeneratorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elimuswift/db-exporter/HEAD/src/DbExporter/Commands/SeedGeneratorCommand.php -------------------------------------------------------------------------------- /src/DbExporter/DbExportHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elimuswift/db-exporter/HEAD/src/DbExporter/DbExportHandler.php -------------------------------------------------------------------------------- /src/DbExporter/DbExportHandlerServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elimuswift/db-exporter/HEAD/src/DbExporter/DbExportHandlerServiceProvider.php -------------------------------------------------------------------------------- /src/DbExporter/DbExporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elimuswift/db-exporter/HEAD/src/DbExporter/DbExporter.php -------------------------------------------------------------------------------- /src/DbExporter/DbMigrations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elimuswift/db-exporter/HEAD/src/DbExporter/DbMigrations.php -------------------------------------------------------------------------------- /src/DbExporter/DbMigrationsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elimuswift/db-exporter/HEAD/src/DbExporter/DbMigrationsServiceProvider.php -------------------------------------------------------------------------------- /src/DbExporter/DbSeeding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elimuswift/db-exporter/HEAD/src/DbExporter/DbSeeding.php -------------------------------------------------------------------------------- /src/DbExporter/Exceptions/InvalidDatabaseException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elimuswift/db-exporter/HEAD/src/DbExporter/Exceptions/InvalidDatabaseException.php -------------------------------------------------------------------------------- /src/DbExporter/Facades/DbExportHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elimuswift/db-exporter/HEAD/src/DbExporter/Facades/DbExportHandler.php -------------------------------------------------------------------------------- /src/DbExporter/Facades/DbMigrations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elimuswift/db-exporter/HEAD/src/DbExporter/Facades/DbMigrations.php -------------------------------------------------------------------------------- /src/DbExporter/SeederHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elimuswift/db-exporter/HEAD/src/DbExporter/SeederHelper.php -------------------------------------------------------------------------------- /src/DbExporter/stubs/migration.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elimuswift/db-exporter/HEAD/src/DbExporter/stubs/migration.stub -------------------------------------------------------------------------------- /src/DbExporter/stubs/seed.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elimuswift/db-exporter/HEAD/src/DbExporter/stubs/seed.stub -------------------------------------------------------------------------------- /src/config/db-exporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elimuswift/db-exporter/HEAD/src/config/db-exporter.php -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elimuswift/db-exporter/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/MigrateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elimuswift/db-exporter/HEAD/tests/Unit/MigrateTest.php -------------------------------------------------------------------------------- /tests/migrations/2017_10_02_124618_create_test_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elimuswift/db-exporter/HEAD/tests/migrations/2017_10_02_124618_create_test_tables.php --------------------------------------------------------------------------------