opb/slim-basic-auth
最新稳定版本:0.2.2
Composer 安装命令:
composer require opb/slim-basic-auth
包简介
HTTP Basic Auth Middleware for the Slim PHP Framework
README 文档
README
This HTTP Basic Auth Middleware plugin for Slim. Key features:
-
Protects a path and all sub-paths. For example, setting it to protect
/adminwill also protect/admin/fooand/admin/bar/bazbut not/foo. -
Provides an interface
AuthCheckerInterfacefor you to implement, in order to check a username/password combo against your own user database. An example is provided below of this in use.
Install
Install via composer:
{
"require": {
"opb/slim-basic-auth": "dev-master"
}
}
Usage
The HttpBasicAuth middleware class is instantiated with two parameters: a mandatory implementation of AuthCheckerInterface and an optional array of options. The two options currently supported are the path to match, and the realm if you wish to set that. The example below shows how you might implement this.
// MyAuthClass - implementing the required AuthCheckerInterface class MyAuthClass implements \Slim\Middleware\AuthCheckerInterface { // only function required by the interface public function checkCredentials($username, $password) { // interact with your own auth system // do some stuff and return true if authorised, false if not } } // the rest of your Slim app, adding in the middleware $app = new \Slim\Slim(); $authChecker = new MyAuthCLass; $app->add(new \Slim\Middleware\HttpBasicAuth($authChecker, array( 'path' => '/api', // optional, defaults to '/' 'realm' => 'Protected API' // optional, defaults to 'Protected Area' )));
统计信息
- 总下载量: 954
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-06-13