Download the PHP package y-ui/laravel-data-masking without Composer

On this page you can find all versions of the php package y-ui/laravel-data-masking. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-data-masking

laravel-data-masking

Latest Stable Version Total Downloads Latest Unstable Version License

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:

Usage

Simple usage

1.scan database and generate config file config/data-masking.php

2.Edit config file data-masking.php

3.Execute

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-' [email protected] => 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

Faker wiki https://github.com/fzaninotto/Faker

If you want to use chinese, open config/app.php add 'faker_locale' => 'zh_CN',


All versions of laravel-data-masking with dependencies

PHP Build Version
Package Version
Requires php Version >=7.0.0
doctrine/dbal Version ^2.5
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package y-ui/laravel-data-masking contains the following files

Loading the files please wait ....