Package Data | |
---|---|
Maintainer Username: | dtisgodsson |
Maintainer Contact: | shout@darrenonthe.net (Darren Taylor) |
Package Create Date: | 2015-09-05 |
Package Last Update: | 2016-04-15 |
Language: | PHP |
License: | Unknown |
Last Refreshed: | 2024-11-14 15:17:33 |
Package Statistics | |
---|---|
Total Downloads: | 712 |
Monthly Downloads: | 3 |
Daily Downloads: | 0 |
Total Stars: | 4 |
Total Watchers: | 1 |
Total Forks: | 2 |
Total Open Issues: | 0 |
This package can be installed via Composer by adding the following to your composer.json file:
"require": {
"dtisgodsson/elocrypt": "1.*"
}
You must then run the following command:
composer update
Simply reference the ElocryptTrait in any Eloquent Model you wish to apply encryption to and then define an "encryptable" array on that model containing a list of the attributes you wish to Encrypt.
For example:
class User extends Eloquent {
use ElocryptTrait;
public $encryptable = ['first_name', 'last_name', 'address_line_1', 'postcode'];
}
By including the ElocryptTrait, the __set() and __get() methods provided by Eloquent are overridden to include an additional step. This additional step simply checks whether the attribute being set or get is included in the "encryptable" array on the model, and either encrypts/decrypts it accordingly OR calls the parent __set() or __get() method.