Scrumwala
Scrumwala copied to clipboard
Function mcrypt_get_iv_size() is deprecated
I got an error of ‘Function mcrypt_get_iv_size() is deprecated’ after run php artisan migrate
and php artisan key:generate
successfully.
Just change cipher
in config/app.php
can fix this error:
from
'cipher' => MCRYPT_RIJNDAEL_128,
to
'cipher' => 'AES-256-CBC',