23g / zxcvbn-php-nl
This package is abandoned and no longer maintained.
No replacement package was suggested.
Dutch translations for zxcvbn-php based on zxcvbn-nl
v1.0.0
2021-06-02 14:08 UTC
Requires
- php: >=7.4
- bjeavons/zxcvbn-php: ^1.1
This package is auto-updated.
Last update: 2022-02-11 10:25:13 UTC
README
zxcvbn-php-nl
- Plugin for Zxcvbn-PHP, containing Dutch dictionaries
- Dictionaries were pulled from pepve/zxcvbn-nl
Usage
use ZxcvbnPhp\Matchers\NL\DutchDictionaryMatch; use ZxcvbnPhp\Matchers\NL\DutchReverseDictionaryMatch; use ZxcvbnPhp\Zxcvbn; $zxcvbn = new Zxcvbn(); $zxcvbn->addMatcher(DutchDictionaryMatch::class); $zxcvbn->addMatcher(DutchReverseDictionaryMatch::class); ... $result = $zxcvbn->passwordStrength('password');