bcmdevteam / bcm-crypt
Simple package to handle AES encryption and decryption
v1.1
2016-06-06 12:10 UTC
Requires
- php: >=5.4.0
This package is not auto-updated.
Last update: 2026-03-15 03:12:49 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,
...
]