cakephp/authorization

Authorization abstraction layer plugin for CakePHP

Installs: 1 148 186

Dependents: 26

Suggesters: 3

Security: 0

Stars: 74

Watchers: 26

Forks: 48

Open Issues: 0

Type:cakephp-plugin

3.1.2 2024-02-06 09:09 UTC

README

Build Status Latest Stable Version Total Downloads Coverage Status Software License

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