bariew / yii2-user-cms-module
User module
Installs: 283
Dependents: 2
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- bariew/yii2-abstract-module: *
- bariew/yii2-tools: dev-master
- yiisoft/yii2-authclient: ~2.0.0
This package is auto-updated.
Last update: 2024-10-16 15:22:48 UTC
README
Standard yii2 module for user management.
Installation
- Mention module class in app config
'modules' => [
...
'user' => [
'class' => 'bariew\userModule\Module',
'params' => [
'emailConfirm' => false, // whether registration email confirm is required
'resetTokenExpireSeconds' => 86400 // seconds till password reset token expires
]
]
]
- Set app user component identity class.
'components' => [
...
'user' => [
'identityClass' => 'bariew\userModule\models\User',
],
'authClientCollection' => [
'class' => 'yii\authclient\Collection',
'clients' => [
'google' => [
'class' => 'yii\authclient\clients\GoogleOAuth',
'clientId' => 'google_client_id',
'clientSecret' => 'google_client_secret',
],
'facebook' => [
'class' => 'yii\authclient\clients\Facebook',
'clientId' => 'facebook_client_id',
'clientSecret' => 'facebook_client_secret',
],
],
]
]