ahmadrezaei / yii-adaccount
v1.0.1
2018-01-15 10:18 UTC
Requires
- yiisoft/yii2-authclient: ~2.0@dev
This package is auto-updated.
Last update: 2024-09-08 22:51:17 UTC
README
安装此扩展的首选方式是通过 composer.
运行以下命令之一
php composer.phar require --prefer-dist ahmadrezaei/yii-adaccount "*"
或
"ahmadrezaei/yii-adaccount": "*"
将以下内容添加到 composer.json 的 require
部分。
用法
您必须阅读 yii2-authclient 文档
并将 adaccount 客户端添加到您的认证客户端中。
'components' => [ 'authClientCollection' => [ 'class' => 'yii\authclient\Collection', 'clients' => [ 'adaccount' => [ 'class' => 'ahmadrezaei\yii\authclient\Adaccount', 'clientId' => 'adaccount_client_id', 'clientSecret' => 'adaccount_client_secret', ], ], // other clients ], ], // ... ]