# authorization **Repository Path**: mirrors_CakeDC/authorization ## Basic Information - **Project Name**: authorization - **Description**: PSR7 Middleware for authorization - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-03-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # CakePHP Authorization [![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.txt) [![Build Status](https://img.shields.io/travis/cakephp/authorization/master.svg?style=flat-square)](https://travis-ci.org/cakephp/authorization) [![Coverage Status](https://img.shields.io/codecov/c/github/cakephp/authorization.svg?style=flat-square)](https://codecov.io/github/cakephp/authorization) Authorization stack for the CakePHP framework. This branch is for CakePHP 3.x. ## Authorization not Authentication This plugin intends to provide a framework around authorization and access control. Authentication is a [separate concern](https://en.wikipedia.org/wiki/Separation_of_concerns) that has been packaged into a separate [authentication plugin](https://github.com/cakephp/authentication). ## Installation You can install this plugin into your CakePHP application using [composer](https://getcomposer.org): ``` php composer.phar require cakephp/authorization ``` Load the plugin by adding the following statement in your project's `src/Application.php`: ```php $this->addPlugin('Authorization'); ``` Prior to 3.6.0 ```php Plugin::load('Authorization'); ``` ## Documentation Documentation for this plugin can be found in the [CakePHP Cookbook](https://book.cakephp.org/authorization/1.1/en/)