wnikk/laravel-access-rules 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

wnikk/laravel-access-rules

最新稳定版本:2.2.30

Composer 安装命令:

composer require wnikk/laravel-access-rules

包简介

Simple system of ACR (access control rules) for Laravel, with roles, groups, unlimited inheritance and possibility of multiplayer use.

README 文档

README

Laravel Access Control Rules

Access Control Rules (Laravel Permissions Package)

License Code Climate PHP Version Require Total Downloads Latest Stable Version Latest Unstable Version

What does Access Control Rules support?

  • Multiple user models.
  • Multiple permissions can be attached to users.
  • Multiple permissions can be attached to groups.
  • Permissions verification.
  • Permissions caching.
  • Events when permissions are attached, detached or synced.
  • Multiple permissions can be attached to user or group.
  • Permissions can be inherited with unlimited investment from users and groups.
  • Laravel gates and policies.

Visual Interface

The visual interface for managing access control rules and permissions can be found at this link. It offers an intuitive and user-friendly environment for administrators to define roles, assign permissions, and configure access rules.

For detailed usage examples and instructions, refer to the example repository.

Documentation, Installation, and Usage Instructions

See the documentation for detailed installation and usage instructions.

Versions & Dependencies

Laravel Access Control Rules PHP Laravel
2.x 7.4 - 8.4 8 - 13
1.x 7.1 - 7.3 5.5 - 8

You can install the package using composer:

composer require wnikk/laravel-access-rules

See the installation page for detailed.

What It Does

This package allows you to manage user permissions and groups (instead roles) in a database.

Once installed you can do stuff like this:

use Wnikk\LaravelAccessRules\AccessRules;

// Add new rule permission
AccessRules::newRule('articles.edit', 'Access to editing articles');
// Adding permissions to a user
$user->addPermission('articles.edit');

Or you can inherit the rights from another user or groups

// According to the existing user from object
$user->inheritPermissionFrom(User::find(1));

// By identifier
$user->inheritPermissionFrom(User::class, 1);

// From the group
$user->inheritPermissionFrom('Group', 1);

Because all permissions will be registered on Laravel's gate, you can check if a user has a permission with Laravel's default can function:

$user->can('articles.edit'); 

Or without model:

$acr = new AccessRules;
$acr->setOwner('AnotherAnySystemUser', 'UserID-From-Any-System-FF01');
$check = $acr->can('articles.edit');
if (!$check) {abort(403);}

Examples of how can be used in more detail described in Basic Usage section.

Opening an Issue

Before opening an issue there are a couple of considerations:

  • You are all awesome!
  • Pull requests are more than welcome.
  • Read the instructions and make sure all steps were followed correctly.
  • Check that the issue is not specific to your development environment setup.
  • Provide duplication steps.
  • Attempt to look into the issue, and if you have a solution, make a pull request.
  • Show that you have made an attempt to look into the issue.
  • Check to see if the issue you are reporting is a duplicate of a previous reported issue.
  • Following these instructions show me that you have tried.
  • Please be considerate that this is an open source project that I provide to the community for FREE when opening an issue.

Alternatives

License

The MIT License (MIT). Please see License File for more information.

统计信息

  • 总下载量: 3.67k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 10
  • 点击次数: 0
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 10
  • Watchers: 2
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-02-09

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固