y-ui / laravel-data-masking
A mysql data masking tool with Laravel
Installs: 1 553
Dependents: 0
Suggesters: 0
Security: 0
Stars: 30
Watchers: 2
Forks: 4
Open Issues: 0
Requires
- php: >=7.0.0
- doctrine/dbal: ^2.5
Requires (Dev)
- php: >=7.0.0
README
Installation
composer require --dev y-ui/laravel-data-masking ^1.0
Configuration
If you’re on Laravel 5.5 or later the package will be auto-discovered.
Otherwise you will need to manually configure it in your config/app.php
and add the following to the providers array:
\Yui\DataMasking\DataMaskingServiceProvider::class,
Usage
Simple usage
1.scan database and generate config file config/data-masking.php
php artisan data:scan
2.Edit config file data-masking.php
3.Execute
php artisan data:mask
Options
#Specify the name of the table to scan
php artisan data:scan --tables=users,orders
#Update only data that meets the criteria
php artisan data:mask --tables=users --where='id>100'
Config File
You can customize any character
'name' => '' nothing to do
'name' => '*:1-' Tom => *** Replace all characters
'name' => '0:2-4' William => W000iam
'name' => '0:3-5' Tom => To000
'phone' => '*:4-7' 18666666666 => 186****6666
'phone' => '123:4-' 18666666666 => 18612312312
'phone' => '*:1~2' 18666666666 => 1********66 Keep the first and end character
'email' => 'email:3-' production@google.com => pr********@google.com Replace only the characters before @
'name' => 'text:Alex' everything => Alex Replace all value to text
You can also use faker to replace column
'address' => 'faker:address'
'date' => "faker:date($format = 'Y-m-d', $max = 'now')"
'name' => 'faker:name'
If there is a field with a content of 0-9, you want to set it all to 2
'cloumn_name' => '2:1-' //This is faster than using faker
Faker wiki https://github.com/fzaninotto/Faker
If you want to use chinese, open config/app.php
add 'faker_locale' => 'zh_CN'
,