cakephp / authorization
Authorization abstraction layer plugin for CakePHP
Installs: 1 383 453
Dependents: 26
Suggesters: 3
Security: 0
Stars: 76
Watchers: 28
Forks: 46
Open Issues: 2
Type:cakephp-plugin
Requires
- php: >=8.1
- cakephp/http: ^5.1
- 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.2
- cakephp/cakephp: ^5.1
- cakephp/cakephp-codesniffer: ^5.1
- phpunit/phpunit: ^10.5.5 || ^11.1.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).
- 3.x-dev
- 3.3.1
- 3.3.0
- 3.2.0
- 3.1.2
- 3.1.1
- 3.1.0
- 3.0.1
- 3.0.0
- 2.x-dev
- 2.5.0
- 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-chore/cleanup
- dev-3.next
- dev-2.next
- dev-service
- dev-consistent-names
- dev-2.x-phauthentic
This package is auto-updated.
Last update: 2024-10-18 15:54:33 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