venturedrake/laravel-encryptable

Automatically encrypt and decrypt database table fields

0.1.4 2024-02-06 05:33 UTC

This package is auto-updated.

Last update: 2024-04-06 05:53:01 UTC


README

Latest Version on Packagist Build Status StyleCI Codacy Badge Total Downloads

Automatically encrypt and decrypt database table fields.

⚠️ Warning: This is a pre-release version that is not yet ready for production use.

Installation

You can install the package via composer:

composer require venturedrake/laravel-encryptable

You can publish the config file with:

php artisan vendor:publish --provider="VentureDrake\LaravelEncryptable\LaravelEncryptableServiceProvider" --tag="config"

Usage

Add the trait to your model and your encryptable rules.

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;
use VentureDrake\LaravelEncryptable\Traits\LaravelEncryptableTrait;

class Person extends Model
{
    use LaravelEncryptableTrait;
    
    /**
	 * Laravel Encryptable Rules
	 *
	 * @var array
	 */
    protected $encryptable = [
        'first_name',
        'last_name',
    ];
    
...  
}

Now when you store, update or read from the model the first_name and last_name fields will automatically be encrypted and decrypted.

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.