I've just upgraded my MAMP server to run 7.1.0. I'm now getting this error with my Laravel 4.2 installations;
Function mcrypt_get_iv_size() is deprecated
I've tried changing
'cipher' => MCRYPT_RIJNDAEL_128,
to
'cipher' => 'AES-256-CBC',
but to no avail.
Does anyone know how to get around this issue in Laravel 4.2?
Not a duplicate as explained in the comments.