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
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
其他信息
- 授权协议: proprietary
- 更新时间: 2021-08-23