cakephp / authorization
CakePHP 的授权抽象层插件
3.2.0
2024-07-25 12:20 UTC
Requires
- php: >=8.1
- cakephp/http: ^5.0
- psr/http-client: ^1.0
- psr/http-message: ^1.1 || ^2.0
- psr/http-server-handler: ^1.0
- psr/http-server-middleware: ^1.0
Requires (Dev)
- cakephp/authentication: ^3.0
- cakephp/bake: ^3.0
- cakephp/cakephp: ^5.0
- cakephp/cakephp-codesniffer: ^5.0
- phpunit/phpunit: ^10.1.0
Suggests
- cakephp/http: To use "RequestPolicyInterface" (Not needed separately if using full CakePHP framework).
- cakephp/orm: To use "OrmResolver" (Not needed separately if using full CakePHP framework).
- 3.x-dev
- 3.2.0
- 3.1.2
- 3.1.1
- 3.1.0
- 3.0.1
- 3.0.0
- 2.x-dev
- 2.4.0
- 2.3.1
- 2.3.0
- 2.2.0
- 2.1.0
- 2.0.5
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 1.x-dev
- 1.3.2
- 1.3.1
- 1.3.0
- 1.2.0
- 1.1.0
- 1.0.0
- 1.0.0-beta8
- 1.0.0-beta7
- 1.0.0-beta6
- 1.0.0-beta5
- 1.0.0-beta4
- 1.0.0-beta3
- 1.0.0-beta2
- 1.0.0-beta1
- dev-dependabot/composer/phpunit/phpunit-tw-11.3.5
- dev-3.next
- dev-2.next
- dev-service
- dev-consistent-names
- dev-2.x-phauthentic
This package is auto-updated.
Last update: 2024-09-16 21:48:48 UTC
README
CakePHP 框架的授权堆栈。
授权非认证
此插件旨在提供授权和访问控制的框架。认证是一个独立关注点,已被打包到独立的认证插件中。
安装
您可以使用 composer 将此插件安装到您的 CakePHP 应用程序中
php composer.phar require cakephp/authorization
在您的项目 src/Application.php
文件中添加以下语句以加载插件
$this->addPlugin('Authorization');
或运行控制台命令
bin/cake plugin load Authorization
文档
此插件的文档可以在 CakePHP 烹饪书 中找到