Releases: roderik/pwgen-php
Releases · roderik/pwgen-php
0.1.8: Fix & enhance tests (#16)
* Fix asserts using NotRegExp Asserting against the regexp would only prove at leat one character in the generated password is not in the given set. Use of assertNotregExep verify that no character come from the set. Also fix testGenerateNumerals because $capitalize default value in constructor is set to true. Solely defined third parameter to true will also generate upper chars. Add specific test to generate numerals and disable $capitalize. refs #13 #14 * Most ambiguous character are upper ones fix #13 * We may not assert ambiguous chars will be generated refs #13 * Setting noVovels implies having digits & uppers https://github.com/roderik/pwgen-php/blob/7ecf653a701bfa4115fa2cc5fa438c1a5c4dfbaf/src/PWGen.php#L199 refs #13 * Fix test with noVovels set
0.1.7: Merge pull request #5 from ComaVN/use-php7-random_int
use php7's random_int if possible
0.1.6: Merge pull request #4 from Zarthus/php710-support
PHP 7.1.0 compatibility: Use openssl_random_pseudo_bytes over mcrypt