We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3235e18 commit c0f72f4Copy full SHA for c0f72f4
README.md
@@ -11,15 +11,19 @@ Zxcvbn-PHP is a password strength estimator using pattern matching and minimum e
11
12
The library can be installed with [Composer](http://getcomposer.org) by adding it as a dependency to your composer.json file.
13
14
+Via the command line run:
15
+`composer require bjeavons/zxcvbn-php`
16
+
17
+Or in your composer.json add
18
```json
19
{
20
"require": {
- "bjeavons/zxcvbn-php": "^0.4"
21
+ "bjeavons/zxcvbn-php": "^1.0"
22
}
23
24
```
25
-After running `php composer.phar update` on the command line, include the
26
+Then run `composer update` on the command line and include the
27
autoloader in your PHP scripts so that the ZxcvbnPhp class is available.
28
29
```php
0 commit comments