diecoding / yii2-rbac
RBAC / Auth Manager for Yii2 Extends 'mdmsoft/yii2-admin': '~2.0'
Installs: 1 252
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 1
Type:yii2-extension
Requires
- php: >=7.0
- mdmsoft/yii2-admin: ~2.0
Requires (Dev)
- yiisoft/yii2-codeception: ~2.0
README
RBAC / Auth Manager for Yii2 Extends 'mdmsoft/yii2-admin': '~2.0'
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/.
- Change Log.
- Installation.
- Authorization Guide. Important, read this first before you continue.
- Configuration
- Using Menu.
- Screenshots.
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', ... ], ... ];