2017 © Pedro Peláez
 

library encryption

Encryption package for laravel 5.6

image

parsidev/encryption

Encryption package for laravel 5.6

  • Sunday, March 25, 2018
  • by parsidev
  • Repository
  • 1 Watchers
  • 0 Stars
  • 14 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 1 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Requirement ========== Laravel 5.5, (*1)

installation, (*2)


For install this package Edit your project's composer.json file to require parsidev/encryption, (*3)

php "require": { "parsidev/encryption": "dev-master" }, Now, update Composer: composer update Once composer is finished, you need to add the service provider. Open config/app.php, and add a new item to the providers array. Parsidev\Encryption\EncryptionServiceProvider::class, Next, add a Facade for more convenient usage. In config/app.php add the following line to the aliases array: 'Encryption' => Parsidev\Encryption\Facades\Encryption::class Publish config files: php artisan vendor:publish --provider="Parsidev\Encryption\EncryptionServiceProvider"
, (*4)

Usage, (*5)


Before using this package you must add your custom key(s) to encryption.php in config folder
This package can encrypt your text to the count of keys entered in the config file., (*6)

### Encrypt php Encryption::encrypt($text);, (*7)

### Decrypt php Encryption::decrypt($text);, (*8)

The Versions

25/03 2018

5.6.x-dev

5.6.9999999.9999999-dev

Encryption package for laravel 5.6

  Sources   Download

MIT

The Requires

 

by Mohammad Reza

23/09 2017

dev-master

9999999-dev

Encryption package for laravel 5.5

  Sources   Download

MIT

The Requires

 

by Mohammad Reza