1.5.0
Completly removed uses of bjeavons/zxcvbn-php package from PHPAuth Core. See CUSTOM_VALIDATORS.md. Package added to 'suggest' section of composer.json
Please use:
use ZxcvbnPhp\Zxcvbn;
$config = $config->setPasswordValidator(static function($password) use ($config) {
return (bool)((new Zxcvbn())->passwordStrength($password)['score'] >= intval($config->password_min_score));
});