atans/yii2-user

An user extension for yii2

Installs: 39

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Type:yii2-extension

1.10.1 2018-01-05 04:36 UTC

This package is auto-updated.

Last update: 2024-04-13 21:49:41 UTC


README

An user extension for yii2

Installation

Step 1

The preferred way to install this extension is through composer.

Either run

composer atans/yii2-user "*"

or add

"atans/yii2-user": "*"

to the require section of your composer.json file.

Step 2

Update database schema

$ php yii migrate/up --migrationPath=@vendor/atans/yii2-user/migrations

Step 3

Add this module

    // config/main.php

    'modules' => [
        'rbac' => 'atans\user\Module',
    ],