pkpudev/yii2-simplesaml

Yii2 Simplesaml

安装: 617

依赖: 0

建议者: 0

安全性: 0

星标: 1

关注者: 2

分支: 1

类型:yii2-extension

0.5 2023-02-23 05:03 UTC

This package is auto-updated.

Last update: 2024-09-23 09:02:52 UTC


README

PKPU 开发团队使用的 Yii2 SimpleSaml

安装

安装此扩展的首选方式是通过 Composer

运行以下命令之一:

php composer.phar require --prefer-dist pkpudev/yii2-simplesaml "*"

或者

"pkpudev/yii2-simplesaml": "*"

将以下内容添加到您的 composer.json 文件的 require 部分中。

使用方法

将此内容添加到您的配置文件中

'user' => [
	'class' => 'pkpudev\simplesaml\WebUser',
	'identityClass' => 'path\to\models\User',
	'autoloaderPath'=>'/path/to/simplesamlphp/version/lib/_autoload.php',
	'authSource'=>'your-client',
	'attributesConfig'=>array(
		'id'=>'id',
		'username'=>'user_name',
		'name'=>'full_name',
		'fullname'=>'full_name',
		'email'=>'email',
		// add others
	),
	'superuserCheck' => true,
	'superuserPermissionName' => 'superuserAccess',
],