makcent / yii2-authclient
Yii Authclient for Weibo, QQ, Wechat and etc
Installs: 33
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/makcent/yii2-authclient
Requires
- yiisoft/yii2-authclient: ~2.0.5@dev
This package is auto-updated.
Last update: 2025-09-14 07:24:08 UTC
README
Yii Authclient for Weibo,QQ,Wechat
Config Setting
'components' => [
'authClientCollection' => [
'class' => 'yii\authclient\Collection',
'clients' => [
'weibo' => [
'class' => 'makcent\authclient\Weibo',
'clientId' => 'wb_key',
'clientSecret' => 'wb_secret',
],
'qq' => [
'class' => 'makcent\authclient\Qq',
'clientId' => 'qq_appid',
'clientSecret' => 'qq_appkey',
],
'weixin' => [
'class' => 'makcent\authclient\Weixin',
'clientId' => 'weixin_appid',
'clientSecret' => 'weixin_appkey',
],
],
]
// other components
]