PasswordStrengthBundle icon indicating copy to clipboard operation
PasswordStrengthBundle copied to clipboard

Validator for ensuring strong passwords in Symfony2 applications

Results 2 PasswordStrengthBundle issues
Sort by recently updated
recently updated
newest added

Is possible to customize messages with validators.lang.yml ? write example how to customize it

Hello there, `Bafford\PasswordStrengthBundle\Validator\Constraints\PasswordStrengthValidator` don't ignore empty values : ``` php public function validate($value, Constraint $constraint) { if($value === null) $value = ''; // ... ``` instead of ``` php public...