Download the PHP package tapanderasari/laravel-mysql-encrypt without Composer
On this page you can find all versions of the php package tapanderasari/laravel-mysql-encrypt. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download tapanderasari/laravel-mysql-encrypt
More information about tapanderasari/laravel-mysql-encrypt
Files in tapanderasari/laravel-mysql-encrypt
Package laravel-mysql-encrypt
Short Description Laravel Database encryption mysql side
License MIT
Informations about the package laravel-mysql-encrypt
Laravel MySql AES Encrypt/Decrypt
Laravel database encryption at database side using native AES_DECRYPT and AES_ENCRYPT functions. Automatically encrypt and decrypt fields in your Models.
Install
1. Composer
2. Publish config (optional)
Laravel
Lumen
3. Set encryption key in .env
file
Update Models
Validators
unique_encrypted
exists_encrypted
Scopes
Custom Local scopes available:
whereEncrypted
whereNotEncrypted
orWhereEncrypted
orWhereNotEncrypted
orderByEncrypted
whereEncryptedLike
scopeOrderByEncryptedSort
Global scope DecryptSelectScope
automatically booted in models using Encryptable
trait.
Schema columns to support encrypted data
Implementing encryption for existing data
For this you can create one command like
In this command you fetch existing table or model data without global scope DecryptSelectScope
.
You can refer the example, clicking on below Example button:
License
The MIT License (MIT). Please see License File for more information.
All versions of laravel-mysql-encrypt with dependencies
illuminate/database Version ^10.0|^11.0|^12.0
illuminate/support Version ^10.0|^11.0|^12.0