A database dumping package that allows you to replace and mask columns while dumping your database.
You can :
- Replace
$table->replace();
- Ignore ids
$table->ignore();
$table->isIgnored();
- Mask
$table->mask();
- Create rule for replace
$table->replaceWhen();
- Get schema or full dump
$table->schemaOnly();
- Set priority tables for dump
$shema->priorityTables();
- Disable constrain for table
$table->disableConstrain();
$shema->disableAllConstrains();
- More
modifyQuery()
fullDump()
schemaOnly()
shouldDumpData()
You can install the package via composer v2:
composer require sergefenix/laravel-db-masked-dump
php artisan vendor:publish --provider=FenixDumper\\LaravelMaskedDumper\\LaravelMaskedDumpServiceProvider
php artisan db:masked-dump output.sql
php artisan db:masked-dump output.sql --definition=sqlite
php artisan db:masked-dump output.sql --gzip
The MIT License (MIT). Please see License File for more information.