andrewdyer/auth-gate
Composer 安装命令:
composer require andrewdyer/auth-gate
包简介
A framework-agnostic library for defining abilities and enforcing authorisation checks against an authenticated user
README 文档
README
A framework-agnostic library for defining abilities and enforcing authorisation checks against an authenticated user.
Introduction
This library lets you register named ability callbacks and evaluate them against the authenticated user who is performing the action. It supports global before callbacks for overrides, checks for single or multiple abilities, and an explicit authorisation flow that throws an unauthorised exception when checks fail. Undefined abilities and invalid before callback return values are also surfaced through typed exceptions.
Prerequisites
Installation
composer require andrewdyer/auth-gate
Getting Started
1. Implement the actor
Any class that represents an authenticated actor must implement the Authenticatable interface. This is the object that will be evaluated against your defined abilities.
use AndrewDyer\Gate\Contracts\Authenticatable; class User implements Authenticatable { public function __construct( public readonly int $id, public readonly bool $admin = false, ) {} public function isAdmin(): bool { return $this->admin; } }
2. Create a Gate instance
Instantiate the Gate with the authenticated actor. This instance will be used to define and evaluate abilities.
use AndrewDyer\Gate\Gate; $actor = new User(id: 1); $gate = new Gate($actor);
Usage
The following examples demonstrate the available gate operations using the setup above.
Defining Abilities
Abilities are registered via the define method, which accepts an ability name and a callback that returns a boolean.
$gate->define('edit-post', function ($actor, $post) { return $actor->id === $post->authorId; });
Checking Abilities
Use allows and denies to evaluate a single ability, or all and any for multiple abilities.
$gate->allows('edit-post', $post); // true or false $gate->denies('edit-post', $post); // true or false $gate->all(['edit-post', 'delete-post'], $post); // true if all pass $gate->any(['edit-post', 'view-post'], $post); // true if any pass
Authorising Actions
authorize throws an UnauthorizedException if the actor lacks any of the given abilities.
use AndrewDyer\Gate\UnauthorizedException; try { $gate->authorize(['edit-post'], $post); } catch (UnauthorizedException $e) { // Actor is not authorised }
Registering Before Callbacks
Before callbacks run prior to all ability checks. Returning true or false short-circuits the evaluation; returning null (or nothing) defers to the defined ability.
$gate->before(function ($actor, $ability) { if ($actor->isAdmin()) { return true; } });
License
Licensed under the MIT license and is free for private or commercial projects.
andrewdyer/auth-gate 适用场景与选型建议
andrewdyer/auth-gate 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 0 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 04 月 18 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「authorization」 「gate」 「access-control」 「abilities」 「framework-agnostic」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 andrewdyer/auth-gate 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 andrewdyer/auth-gate 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 andrewdyer/auth-gate 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Permission handling for Laravel using Gates with Route Names
Ory-Hydra OAuth 2.0 Client Provider for The PHP League OAuth2-Client
A lightweight and powerful OAuth 2.0 authorization and resource server library with support for all the core specification grants. This library will allow you to secure your API with OAuth and allow your applications users to approve apps that want to access their data from your API.
Based on native Laravel's gates and policies. Hierarchical RBAC with callbacks.
Laravel JWT auth service package
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 30
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-04-18