├── .editorconfig ├── .gitignore ├── .php_cs ├── .scrutinizer.yml ├── .travis.yml ├── LICENSE.md ├── README.md ├── composer.json ├── config └── db-rebuild.php ├── phpunit.xml ├── src ├── Commands │ └── DbRebuild.php ├── Config.php └── ServiceProvider.php └── tests ├── Feature ├── DbRebuildCommandTest.php └── DbRebuildConfigTest.php ├── TestCase.php └── database ├── DatabaseSeeder.php └── migrations └── 2019_02_19_create_db_rebuild_test_table.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webparking/laravel-db-rebuild/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webparking/laravel-db-rebuild/HEAD/.gitignore -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webparking/laravel-db-rebuild/HEAD/.php_cs -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webparking/laravel-db-rebuild/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webparking/laravel-db-rebuild/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webparking/laravel-db-rebuild/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webparking/laravel-db-rebuild/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webparking/laravel-db-rebuild/HEAD/composer.json -------------------------------------------------------------------------------- /config/db-rebuild.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webparking/laravel-db-rebuild/HEAD/config/db-rebuild.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webparking/laravel-db-rebuild/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Commands/DbRebuild.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webparking/laravel-db-rebuild/HEAD/src/Commands/DbRebuild.php -------------------------------------------------------------------------------- /src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webparking/laravel-db-rebuild/HEAD/src/Config.php -------------------------------------------------------------------------------- /src/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webparking/laravel-db-rebuild/HEAD/src/ServiceProvider.php -------------------------------------------------------------------------------- /tests/Feature/DbRebuildCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webparking/laravel-db-rebuild/HEAD/tests/Feature/DbRebuildCommandTest.php -------------------------------------------------------------------------------- /tests/Feature/DbRebuildConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webparking/laravel-db-rebuild/HEAD/tests/Feature/DbRebuildConfigTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webparking/laravel-db-rebuild/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/database/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webparking/laravel-db-rebuild/HEAD/tests/database/DatabaseSeeder.php -------------------------------------------------------------------------------- /tests/database/migrations/2019_02_19_create_db_rebuild_test_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webparking/laravel-db-rebuild/HEAD/tests/database/migrations/2019_02_19_create_db_rebuild_test_table.php --------------------------------------------------------------------------------