yujiandong / yii2-authclient
Yii Authclient for Weibo, QQ, Wechat and etc
Installs: 533
Dependents: 0
Suggesters: 0
Security: 0
Stars: 50
Watchers: 7
Forks: 23
Open Issues: 2
Requires
- php: >=5.4.0
This package is not auto-updated.
Last update: 2024-12-11 19:56:57 UTC
README
Yii Authclient for Weibo,QQ,Wechat,Gitee
Config Setting
'components' => [
'authClientCollection' => [
'class' => 'yii\authclient\Collection',
'clients' => [
'weibo' => [
'class' => 'yujiandong\authclient\Weibo',
'clientId' => 'wb_key',
'clientSecret' => 'wb_secret',
],
'qq' => [
'class' => 'yujiandong\authclient\Qq',
'clientId' => 'qq_appid',
'clientSecret' => 'qq_appkey',
],
'weixin' => [
'class' => 'yujiandong\authclient\Weixin',
'clientId' => 'weixin_appid',
'clientSecret' => 'weixin_appkey',
],
'gitee' => [
'class' => 'yujiandong\authclient\Gitee',
'clientId' => 'gitee_clientId',
'clientSecret' => 'gitee_clientSecret',
],
],
]
// other components
]