ahmadrezaei/yii-adaccount

安装: 23

依赖: 0

建议者: 0

安全: 0

星标: 0

关注者: 1

分支: 0

公开问题: 0

类型:yii2-extension

v1.0.1 2018-01-15 10:18 UTC

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
        ],
    ],
    // ...
 ]