A bundle to integrate zxcvbn-php with your symfony app. Supports localization and custom matchers.
composer require createnl/zxcvbn-bundle
use Createnl\ZxcvbnBundle\ZxcvbnFactoryInterface;
class PasswordController
{
public function updatePassword(string $password, ZxcvbnFactoryInterface $zxcvbnFactory)
{
$userData = [
'Marco',
'[email protected]'
];
$zxcvbn = $zxcvbnFactory->createZxcvbn();
$weak = $zxcvbn->passwordStrength($password, $userData);
echo $weak['score']; // will print 0
$strong = $zxcvbn->passwordStrength('correct horse battery staple');
echo $strong['score']; // will print 4
echo $weak['feedback']['warning']; // will print user-facing feedback on the password, set only when score <= 2
echo $weak['feedback']['suggestions']; // may contain user-facing suggestions to improve the score
}
}
This package supports the localization of warning and suggestion messages. Checks on common passwords, words and (family) names are only in English (US). But you can tag your own matcher to extend to your needs.
Supported languages:
- Dutch 🇳🇱
- English 🇺🇸
More about localization in Symfony.
If you are missing translations in your language you may consider creating (and contribute) them.
Override in your project:
- Open messages.en.yaml
- Copy the contents to your project's translation file
- Change to your needs
Contributing a language:
- Fork this repository
- Copy messages.en.yaml
- Change the filename to
messages.LOCALE.yaml
(for examplemessages.fr.yaml
) - Open it up and translate the right-hand values to your language
- Create a Pull Request
- Thank you!
If you created your own matcher you can tag them with zxcvbn.matcher
in your service container.
services:
App\ZxcvbnMatchers\:
resource: '../src/ZxcvbnMatchers'
tags: ['zxcvbn.matcher']