Synchronize your production and development databases with a simple command
mtolhuijs/laravel-database-synchronizer is a Laravel package for synchronize your production and development databases with a simple command.
It currently has 27 GitHub stars and 2.939 downloads on Packagist (latest version 0.3.6).
Install it with composer require mtolhuijs/laravel-database-synchronizer.
Discover more Laravel packages by mtolhuijs
or browse all Laravel packages to compare alternatives.
Last updated
This package will completely synchronize the database specified as "from" and "to" in the config or through the command options.
Want to collaborate? Nice! Take a look at contributing.md to see a to do list.
Via Composer
$ composer require mtolhuijs/laravel-database-synchronizer
Optionally you can run php artisan vendor:publish --provider mtolhuijs\LDS\DatabaseSynchronizerServiceProvider
which will create a config file in the root config folder to adjust the behavior of the package.
This package comes with 1 command:
php artisan db:sync Synchronizes your "from" database with your "to" databasedb:sync
{ --from= : Synchronize data from this database instead of the one specified in config }
{ --to= : Synchronize data to this database instead of the one specified in config }
{ --t|tables=* : Only run for given table(s) }
{ --st|skip-tables=* : Skip given table(s) }
{ --l|limit= : Limit query rows (defaults to 5000) }
{ --truncate : Truncate before inserting data }
Please see the changelog for more information on what has changed recently.
Please see contributing.md for details and a todolist.
If you discover any security related issues, please email author email instead of using the issue tracker.
license. Please see the license file for more information.