Skip to content
This repository has been archived by the owner on Feb 11, 2022. It is now read-only.
/ zxcvbn-php-nl Public archive

Dutch dictionaries for Zxcvbn-PHP

License

Notifications You must be signed in to change notification settings

23G/zxcvbn-php-nl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

23G

zxcvbn-php-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');