Package Data | |
---|---|
Maintainer Username: | crothers |
Maintainer Contact: | steven.crothers@gmail.com (Steven Crothers) |
Package Create Date: | 2016-03-05 |
Package Last Update: | 2016-03-06 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-16 15:01:51 |
Package Statistics | |
---|---|
Total Downloads: | 1 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 1 |
Total Watchers: | 2 |
Total Forks: | 2 |
Total Open Issues: | 1 |
This library is meant to be a fairly expansive encryption replacement to Laravel's built in methods. The goals is that by default it will replace the encryption and the hashing mechanisms of Laravel with compatible methods powered by Simple API Security.
First thing you need to do is install the components you want to replace in Laravel in your app.cfg
file from your config directory.
In app.cfg
replace Illuminate\Encryption\EncryptionServiceProvider::class
with SimpleAPISecurity\Laravel\Providers\EncryptionProvider::class
.
In app.cfg
replace Illuminate\Hashing\HashServiceProvider::class
with SimpleAPISecurity\Laravel\Providers\HashProvider::class
.