nojimage/cakephp-login-attempts
最新稳定版本:v3.1.0
Composer 安装命令:
composer require nojimage/cakephp-login-attempts
包简介
LoginAttempts plugin for CakePHP
README 文档
README
Requirements
- CakePHP >= 5.0
- CakePHP Authentication plugin
Installation
You can install this plugin into your CakePHP application using composer.
The recommended way to install composer packages is:
composer require nojimage/cakephp-login-attempts:^3.0
Load plugin
Load the plugin by adding the following statement in your project's src/Application.php:
$this->addPlugin('LoginAttempts');
Create table
Run migration command:
bin/cake migrations migrate -p LoginAttempts
Usage
Use LoginAttempts.Form authenticator instead of Form.
If you are using Authentication plugin:
$service->loadAuthenticator('LoginAttempts.Form', [
'fields' => ['username' => 'email'],
'attemptLimit' => 5,
'attemptDuration' => '+5 minutes',
]);
LoginAttempts.Form Options
attemptLimit
If the number of login failures exceeds attemptLimit during attemptDuration,
the user's login is not permitted.
default: 5
attemptDuration
If the number of login failures exceeds attemptLimit during attemptDuration,
the user's login is not permitted.
default: '+5 minutes'
attemptAction
The number of attempts is stored separately for this key. Use when there are multiple login forms and you want to set restrictions separately.
default: 'login'
attemptsStorageModel
A model used for logging login failures and checking the count of failed login attempts.
default: 'LoginAttempts.Attempts'
统计信息
- 总下载量: 13.87k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 6
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-06-12