cakephp / authorization
Authorization abstraction layer plugin for CakePHP
Installs: 525 116
Dependents: 14
Suggesters: 2
Security: 0
Stars: 61
Watchers: 32
Forks: 40
Open Issues: 10
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).
- 2.x-dev
- 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-cake5
- dev-2.next
- dev-2.x-update-phpstan
- dev-service
- dev-consistent-names
- dev-unauthorized-redirect
- dev-2.x-phauthentic
This package is auto-updated.
Last update: 2022-08-07 05:43:26 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