rebelinblue/laravel-zxcvbn
最新稳定版本:1.6.0
Composer 安装命令:
composer require rebelinblue/laravel-zxcvbn
包简介
Service provider to use the zxcvbn project by @dropbox in Laravel 5.4 and above
README 文档
README
This package provides a validator which uses Dropbox's zxcvbn password strength estimator; it uses the PHP implementation from bjeavons.
Installation
This package can be installed through Composer.
composer require rebelinblue/laravel-zxcvbn
In Laravel 5.5 the package will auto-register the service provider. In Laravel 5.4 you must register this
service provider manually in config/app.php by adding REBELinBLUE\Zxcvbn\ZxcvbnServiceProvider::class to the
providers array
There is also an optional facade for Zxcvbn; in Laravel 5.5 it will be auto-registered. In Laravel 5.4
you must register the facade manually by adding the following to the aliases array in config/app.php
'Zxcvbn' => REBELinBLUE\Zxcvbn\ZxcvbnFacade::class,
Optionally, you can publish the translations for this package with, however it is only required if you wish to change them
php artisan vendor:publish --provider="REBELinBLUE\Zxcvbn\ZxcvbnServiceProvider"
Usage
If you have added the alias you can access Zxcvbn from anywhere in your code using the façade
<?php use Zxcvbn; class MyCustomClass { public function someMethod() { $strength = Zxcvbn::passwordStrength('Pa$$w0rd'); dd($strength); } }
However, you probably want to use it as a validator. The package add a single rule "zxcvbn"
Example
<?php $input = [ /* user input */ ]; $validator = Validator::make($input, [ 'password' => 'required|min:6|zxcvbn', ]);
There are 2 optional parameters, the required score from 0 to 4 and a comma separate list of other fields to compare against, for example to ensure a strong password which doesn't contain the username or email you would use
'password' => 'required|min:6|zxcvbn:4,username,email',
The scores are rated as follows:
- 0 - Too guessable: risky password. (guesses < 10^3)
- 1 - Very guessable: protection from throttled online attacks. (guesses < 10^6)
- 2 - Somewhat guessable: protection from unthrottled online attacks. (guesses < 10^8)
- 3 - Safely unguessable: moderate protection from offline slow-hash scenario. (guesses < 10^10)
- 4 - Very unguessable: strong protection from offline slow-hash scenario. (guesses >= 10^10)
统计信息
- 总下载量: 55.45k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 11
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-06-07