定制 webtoolsnz/yii2-require-login 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

webtoolsnz/yii2-require-login

最新稳定版本:1.0.5

Composer 安装命令:

composer require webtoolsnz/yii2-require-login

包简介

Simple component that enforces a blanket authentication requirement for all controller/actions.

README 文档

README

Software License Scrutinizer Code Quality Code Coverage Build Status

Simple component that enforces a blanket authentication requirement for all controller/actions.

Provides a configurable list of exceptions.

Installation

The preferred way to install this extension is through composer.

Add the following to your composer.json file.

    "require" : {
        "webtoolsnz/yii2-require-login": "*"
    }, 
    "repositories": [
        {
            "type": "composer",
            "url": "https://packages.webtools.nz"
        }
    ]

Configuration Examples

Basic Configuration

...
'components' => [
    'requireLogin' => [
        'class' => 'webtoolsnz\RequireLogin\Component',
    ]
],
...

Custom Exception List

yii2-require-login will by default provide a list of basic route exceptions including: login logout you can override this list with your own list using the below config.

...
'components' => [
    'requireLogin' => [
        'class' => 'webtoolsnz\RequireLogin\Component',
        'exceptions' => [
            '/login',
            '/logout',
            '/my-controller/foo'
        ]
    ]
],
...

License

The MIT License (MIT). Please see LICENSE for more information.

统计信息

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

GitHub 信息

  • Stars: 0
  • Watchers: 14
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: proprietary
  • 更新时间: 2021-08-23