2017 © Pedro Peláez
 

cakephp-plugin cakephp-cors

Cors plugin for CakePHP

image

snelg/cakephp-cors

Cors plugin for CakePHP

  • Friday, March 3, 2017
  • by lewestopher
  • Repository
  • 2 Watchers
  • 19 Stars
  • 1,653 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 4 Forks
  • 1 Open issues
  • 1 Versions
  • 12 % Grown

The README.md

CORS plugin for CakePHP 3.0-3.2

Build Status Coverage Downloads, (*1)

A simple plugin to add CORS headers to specified requests., (*2)

For CakePHP 3.3+, use https://github.com/ozee31/cakephp-cors

Requirements

  • CakePHP 3.0-3.2
  • PHP 5.4+

Installation

You can install this plugin into your CakePHP application using composer., (*3)

To install this plugin, in your terminal type:, (*4)

composer require snelg/cakephp-cors:dev-master

Unlocking CORS for a single controller

Define a single key within the routes array in the DispatcherFactory options array:, (*5)

DispatcherFactory::add('Cors.Cors', ['routes' => [
    'ControllerClassName'
]]);

Unlocking CORS for a controller scoped to a single action

Define a nested array consisting of 'controller' => 'action' within the routes array in DispatcherFactor options:, (*6)

DispatcherFactory::add('Cors.Cors', ['routes' => [
    'ControllerClassName' => 'some_action',
]]);

Scoping CORS to particular origins

DispatcherFactory::add('Cors.Cors', ['routes' => [
    'ControllerClassName' => [
        'action_one' => ['origin' => 'somesite.com']
]]);

Scoping CORS to particular methods

DispatcherFactory::add('Cors.Cors', ['routes' => [
   'ControllerClassName' => [
       'action_one' => [
           'origin' => 'somesite.com',
           'methods' => ['PUT', 'DELETE']
       ]
]]);

Setting CORS within Router::connect

Router::scope('/', function ($routes) {
    $routes->connect('/public_api',
    ['controller' => 'ControllerClass', 'action' => 'action_one', 'cors' => true]]
});
}

Router::connect with custom origins, methods, and headers

Router::scope('/', function ($routes) {
    $routes->connect('/public_api', [
        'controller' => 'ControllerClass',
        'action' => 'action_one',
        'cors' => [
            'origin' => 'your_origin.com',
            'methods' => ['PUT', 'DELETE'],
            'headers' => []
        ]
    ]);
});
}

Support

For bugs and feature requests, please use the issues section of this repository., (*7)

Contributing

To contribute to this plugin please follow a few basic rules., (*8)

Creators

Glen Sawyer && Wes King, (*9)

License

Copyright 2015, Glen Sawyer and Wes King, (*10)

Licensed under The MIT License Redistributions of files must retain the above copyright notice., (*11)

The Versions

03/03 2017

dev-master

9999999-dev

Cors plugin for CakePHP

  Sources   Download

The Requires

 

The Development Requires