mirror of
https://github.com/antonioribeiro/google2fa.git
synced 2026-04-25 08:05:49 +03:00
[GH-ISSUE #44] Wrong php version requirement #252
Labels
No labels
bug
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/google2fa#252
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @magroski on GitHub (Aug 4, 2016).
Original GitHub issue: https://github.com/antonioribeiro/google2fa/issues/44
Google2FA.php, line 276 calls the function random_int(), a PHP 7 function...
http://php.net/manual/en/function.random-int.php
But the project is flagged as PHP 5.4+ compliant
@aik099 commented on GitHub (Aug 4, 2016):
This is not a problem, because function is created by a https://github.com/paragonie/random_compat polyfill package.
@magroski commented on GitHub (Aug 4, 2016):
Yup, it was my mistake. My autoloader silently failed to load random_compat.