tomgrohl/laravel4-php71-encrypter

Laravel 4.2 Encrypter for PHP 7.1+
255,543 42
Install
composer require tomgrohl/laravel4-php71-encrypter
Latest Version:1.1.3
PHP:>=5.6.4
License:MIT
Last Updated:Sep 24, 2021
Links: GitHub  ·  Packagist
Maintainer: tomgrohl

Latest Stable Version Latest Unstable Version License

Laravel 4.2 Encrypter for PHP 7.1+

A port of the Laravel 5.4 Encrypter for 4.2 with PHP 7.1 support.

Due to mcrypt being deprecated in 7.1 you can't run Laravel 4.2 under PHP 7.1 without a lot of deprecate warnings.

This package adds a PHP 7.1+ Encrypter for Laravel 4.2

Note: Backward compatibility has been added in version 1.1.0 for PHP 5.6+ to make upgrading easier

Installation

You can install it using composer:

composer require tomgrohl/laravel4-php71-encrypter

Configuration

1 .Add service provider

Add the following to your providers in the app config

\Tomgrohl\Laravel\Encryption\EncryptionServiceProvider::class

2. Check Encryption Key settings in app config

Cipher must either be 'AES-128-CBC' with a key length of 16

OR

Cipher must either be 'AES-256-CBC' with a key length of 32

3. You're good to go!

Credits

  • Peter Fritchley - Fellow co-worker that wrote this originally for a project

License

MIT

Related Packages

codezero/encrypter

Encrypt and decrypt strings in PHP.

97,771 2
thomaswelton/laravel-mcrypt-faker

Allows installation of Laravel where the PHP Mcrypt extension is not available....

4,094 10
sagalbot/encryptable

Allows you to store Eloquent properties encrypted in your database, and automati...

58,126 27
larapack/attribute-encryption

Allows you to define what attributes in your eloquent model which should be encr...

1,936 3