diecoding/yii2-rbac

This package is abandoned and no longer maintained. The author suggests using the mdmsoft/yii2-admin package instead.

RBAC / Auth Manager for Yii2 Extends 'mdmsoft/yii2-admin': '~2.0'

Installs: 1 245

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 3

Forks: 1

Open Issues: 1

Type:yii2-extension

v0.3.0 2020-04-01 11:14 UTC

README

RBAC / Auth Manager for Yii2 Extends 'mdmsoft/yii2-admin': '~2.0'

Latest Stable Version Total Downloads Monthly Downloads License Quality Score Build Status

Documentation

Disclaimer: This package is actually only used to make it easier for me to build my personal application, but if you are interested please just try it. This package is extends from 'mdmsoft/yii2-admin': '~2.0', you can also use documentation from https://github.com/mdmsoft/yii2-admin/.

Installation

Install With Composer

The preferred way to install this extension is through composer.

Either run

composer require diecoding/yii2-rbac "dev-master"

Or, you may add

"diecoding/yii2-rbac": "dev-master"

to the require section of your composer.json file and execute composer update.

Install From the Archive

Download the latest release from here releases, then extract it to your project. In your application config, add the path alias for this extension.

return [
    ...
    'aliases' => [
        '@diecoding/rbac' => 'path/to/your/extracted',
        // for example
        // '@diecoding/rbac' => '@app/extensions/diecoding/yii2-rbac-1.0.0',
        ...
    ],
    ...
];