bcmdevteam/bcm-crypt

Simple package to handle AES encryption and decryption

v1.1 2016-06-06 12:10 UTC

This package is not auto-updated.

Last update: 2024-09-14 18:47:46 UTC


README

#BcmCrypt

###Installation

Pull the project by running: composer require bcmdevteam/bcm-crypt

Add in your config/app.php:

'providers' => [
    ...
    BcmDevTeam\BcmCrypt\Provider\BcmCryptProvider::class,
    ...
],

'aliases' => [
    ...
    'BcmCrypt'  => BcmDevTeam\BcmCrypt\Facade\BcmCryptFacade::class,
    ...
]