laravel-db-masked-dump maintained by sergefenix
Description
Dump masked information from your database
Author
Last update
2022/03/09 10:22
(3.0.0.x-dev)
License
Downloads
2 659
Tags
Laravel DB Masked Dump
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()
Installation
You can install the package via composer v2:
composer require sergefenix/laravel-db-masked-dump
Commands
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
Credits
License
The MIT License (MIT). Please see License File for more information.