ahmadrezaei / yii-adaccount
Package info
github.com/ahmadrezaei/yii2-adaccount
Type:yii2-extension
pkg:composer/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: 2026-03-09 02:04:56 UTC
README
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist ahmadrezaei/yii-adaccount "*"
or add
"ahmadrezaei/yii-adaccount": "*"
to the require section of your composer.json.
Usage
You must read the yii2-authclient docs
and add the adaccount client to your auth clients.
'components' => [ 'authClientCollection' => [ 'class' => 'yii\authclient\Collection', 'clients' => [ 'adaccount' => [ 'class' => 'ahmadrezaei\yii\authclient\Adaccount', 'clientId' => 'adaccount_client_id', 'clientSecret' => 'adaccount_client_secret', ], ], // other clients ], ], // ... ]