yii2-user Just another yii2 user implementation with advanced features(optional).

Yii2 User module ¶

  1. Installation
  2. Usage
  3. Resources

Just another user module and component. I've adopted some of the features of other user modules and added more advanced features.

  • Optional self registration via front end
  • Lost password retrieval(optional)
  • User administration interface
  • Flexible access control
  • Console commnads
  • Advanced user (optional)

Installation ¶

The preferred way to install this extension is through composer.

Either run ~~~ php composer.phar require --prefer-dist nkostadinov/yii2-user "" ~~~ or add in composer.json ~~~ "nkostadinov/yii2-user": "" ~~~

Usage ¶

Add following lines to your main configuration file: ~~~ 'components' => [

'user' => [
    'class' => 'nkostadinov\user\components\User',
],

], .... //if you want to use the UI part of the extension 'modules' => [

'user' => [
    'class' => 'nkostadinov\user\Module',
],

], ~~~

Resources ¶

For more detailed explanation and additional examples

1 0
4 followers
0 downloads
Yii Version: 2.0
License: BSD-2-Clause
Category: Auth
Developed by: phreak phreak
Created on: Mar 18, 2016
Last updated: 9 years ago

Related Extensions