cakephp / authorization
Authorization abstraction layer plugin for CakePHP
Installs: 738 231
Dependents: 20
Suggesters: 3
Security: 0
Stars: 63
Watchers: 30
Forks: 44
Open Issues: 2
Type:cakephp-plugin
Requires
- php: >=7.2
- cakephp/http: ^4.0
- psr/http-client: ^1.0
- psr/http-message: ^1.0
- psr/http-server-handler: ^1.0
- psr/http-server-middleware: ^1.0
Requires (Dev)
- cakephp/authentication: ^2.0
- cakephp/bake: ^2.0
- cakephp/cakephp: ^4.0
- cakephp/cakephp-codesniffer: ^4.0
- cakephp/plugin-installer: ^1.3
- phpunit/phpunit: ^8.5 || ^9.3
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).
This package is auto-updated.
Last update: 2023-03-18 19:21:08 UTC
README
Authorization stack for the CakePHP framework.
Authorization not Authentication
This plugin intends to provide a framework around authorization and access control. Authentication is a separate concern that has been packaged into a separate authentication plugin.
Installation
You can install this plugin into your CakePHP application using composer:
php composer.phar require cakephp/authorization
Load the plugin by adding the following statement in your project's
src/Application.php
:
$this->addPlugin('Authorization');
or running the console command
bin/cake plugin load Authorization
Documentation
Documentation for this plugin can be found in the CakePHP Cookbook