Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mdmsoft/yii2-admin
Auth manager for Yii2 (RBAC Manager)
https://github.com/mdmsoft/yii2-admin
Last synced: 29 days ago
JSON representation
Auth manager for Yii2 (RBAC Manager)
- Host: GitHub
- URL: https://github.com/mdmsoft/yii2-admin
- Owner: mdmsoft
- License: gpl-3.0
- Created: 2013-11-25T09:47:03.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2023-07-08T00:03:20.000Z (over 1 year ago)
- Last Synced: 2024-05-17T04:43:52.802Z (6 months ago)
- Language: PHP
- Homepage:
- Size: 2.24 MB
- Stars: 1,165
- Watchers: 128
- Forks: 573
- Open Issues: 193
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-yii2 - mdmsoft/yii2-admin
- awesome-indo-projects - Yii2 Admin - Auth manager for Yii2 (RBAC Manager). (Yii)
- awesome-indonesia-repo - Yii2 Admin - Auth manager for Yii2 (RBAC Manager). (Yii)
- awesome-vietnam-repo - Yii2 Admin - Auth manager for Yii2 (RBAC Manager). (Yii)
README
RBAC Manager for Yii 2
======================
GUI manager for RBAC (Role Base Access Control) Yii2. Easy to manage authorization of user :smile:.[![Latest Unstable Version](https://poser.pugx.org/mdmsoft/yii2-admin/v/unstable)](https://packagist.org/packages/mdmsoft/yii2-admin)
[![Total Downloads](https://poser.pugx.org/mdmsoft/yii2-admin/downloads.png)](https://packagist.org/packages/mdmsoft/yii2-admin)
[![Daily Downloads](https://poser.pugx.org/mdmsoft/yii2-admin/d/daily)](https://packagist.org/packages/mdmsoft/yii2-admin)
[![License](https://poser.pugx.org/mdmsoft/yii2-admin/license)](https://packagist.org/packages/mdmsoft/yii2-admin)
[![Reference Status](https://www.versioneye.com/php/mdmsoft:yii2-admin/reference_badge.svg)](https://www.versioneye.com/php/mdmsoft:yii2-admin/references)
[![Build Status](https://img.shields.io/travis/mdmsoft/yii2-admin.svg)](http://travis-ci.org/mdmsoft/yii2-admin)
[![Dependency Status](https://www.versioneye.com/php/mdmsoft:yii2-admin/dev-master/badge.png)](https://www.versioneye.com/php/mdmsoft:yii2-admin/dev-master)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/mdmsoft/yii2-admin/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/mdmsoft/yii2-admin/?branch=master)
[![Code Climate](https://img.shields.io/codeclimate/github/mdmsoft/yii2-admin.svg)](https://codeclimate.com/github/mdmsoft/yii2-admin)Documentation
-------------
> **Important: If you install version 3.x, please see [this readme](https://github.com/mdmsoft/yii2-admin/blob/3.master/README.md#upgrade-from-2x).**- [Change Log](CHANGELOG.md).
- [Authorization Guide](http://www.yiiframework.com/doc-2.0/guide-security-authorization.html). Important, read this first before you continue.
- [Basic Configuration](docs/guide/configuration.md)
- [Basic Usage](docs/guide/basic-usage.md).
- [User Management](docs/guide/user-management.md).
- [Using Menu](docs/guide/using-menu.md).
- [Api](https://mdmsoft.github.io/yii2-admin/index.html).Installation
------------### Install With Composer
The preferred way to install this extension is through [composer](http://getcomposer.org/download/).
Either run
```
php composer.phar require mdmsoft/yii2-admin "~1.0"
or
php composer.phar require mdmsoft/yii2-admin "~2.0"
```or for the dev-master
```
php composer.phar require mdmsoft/yii2-admin "2.x-dev"
```Or, you may add
```
"mdmsoft/yii2-admin": "~2.0"
```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](https://github.com/mdmsoft/yii2-admin/releases), then extract it to your project.
In your application config, add the path alias for this extension.```php
return [
...
'aliases' => [
'@mdm/admin' => 'path/to/your/extracted',
// for example: '@mdm/admin' => '@app/extensions/mdm/yii2-admin-2.0.0',
...
]
];
```[**More...**](docs/guide/configuration.md)
[screenshots](https://goo.gl/r8RizT)