承接 percipioglobal/craft-password-policy 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

percipioglobal/craft-password-policy

最新稳定版本:5.0.0-beta1

Composer 安装命令:

composer require percipioglobal/craft-password-policy

包简介

Enforce a password policy on your users.

README 文档

README

icon

Password Policy plugin for Craft CMS 4.x

Enforce a password policy on your users. This plugin can also check the Have I been Pwned database to make sure users use a password that is secure.

Policy Errors: Screenshot

Password Strength Indicator Screenshot

Requirements

This plugin requires Craft CMS 3.0.0.

Installation

You can install this plugin through the plugin store.

Configuration

You can configure this plugin by adding a config/password-policy.php file:

<?php

return [
    // Minimum password length
    "minLength" => 16,
    
    // Maximum password length
    "maxLength" => 160,
    
    // Force users to use different cases
    "cases" => false,
    
    // Require at least 1 number
    "numbers" => false,
    
    // Require at least one symbol
    "symbols" => false,
    
    // Show a password strength indicator
    "showStrengthIndicator" => true,
    
    // Force user to reset their password after x days
    "forcePasswordReset" => false,
    
    // Provide amount of days for the recurring password to be reset -> default 90 days
    "forcePasswordResetDays" => 90
];

Or through the plugin settings

Screenshot

Brought to you by Percipio Global Ltd.

统计信息

  • 总下载量: 99.03k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 27
  • 点击次数: 1
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 27
  • Watchers: 3
  • Forks: 9
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2020-05-29