elephantsgroup/eg-admin

RBAC Auth manager for Yii2

Installs: 15

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 574

Type:yii2-extension

1.0.1 2018-06-08 02:44 UTC

This package is not auto-updated.

Last update: 2024-03-20 18:55:07 UTC


README

Build Status Packagist Version PHP Version Website Software License

GUI manager for RABC (Role Base Access Control) Yii2 based on mdmsoft Yii2-admin

Documentation

Read the Documentation for master

##Installation

Install With Composer

The preferred way to install this extension is through composer.

Either run

php composer.phar require elephantsgroup/eg-admin "~1"

Or, you may add

"elephantsgroup/eg-admin": "~1"

to the require section of your composer.json file and execute php composer.phar 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' => [
        '@elephantsgroup/admin' => 'path/to/your/extracted',
        // for example: '@elephantsgroup/admin' => '@app/extensions/elephantsgroup/eg-admin-1.0.0',
        ...
    ]
];

More...