We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Function mcrypt_module_open() is deprecated in /usr/share/nginx/vendor/ircmaxell/random-lib/lib/RandomLib/AbstractMcryptMixer.php:75
I think that the fix might be to use random_bytes() in php 7+.
random_bytes()
ircmaxell/RandomLib#55
Edit: locally using something like the following works to guard via version:
if(version_compare(phpversion(), '7.0', '>')){ ...
The text was updated successfully, but these errors were encountered:
See #89
Sorry, something went wrong.
@repejota Any plan to merge this soon? Are you still maintaining this project?
Sure, I'll take a look ASAP sorry really busy lately. Gonna be be merged tomorrow maximum.
Thanks!
No worries, just wanted to check. It's nothing that can't wait a bit.
repejota
No branches or pull requests
Function mcrypt_module_open() is deprecated in /usr/share/nginx/vendor/ircmaxell/random-lib/lib/RandomLib/AbstractMcryptMixer.php:75
I think that the fix might be to use
random_bytes()
in php 7+.ircmaxell/RandomLib#55
Edit: locally using something like the following works to guard via version:
The text was updated successfully, but these errors were encountered: