sokil/cors-bundle

Handling CORS requests

Installs: 10

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 1

Type:symfony-bundle

1.0.0 2017-07-04 13:12 UTC

This package is auto-updated.

Last update: 2024-04-28 00:32:30 UTC


README

Handling CORS Requests

Total Downloads

Installation

Add composer dependency:

composer.phar require sokil/cors-bundle

Register bundle in your AppKernel:

<?php

class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            new Sokil\CorsBundle\CorsBundle(),
        );
    }
}

Configuration

Configure bundle in your /app/config/config.yml:

cors:
  allowedOrigins: # list of hosts, allowed to do CORS requests to your app. 
    - https://fb.com
    - https://google.com
  withCredentials: true # allow send cookies to your hosts between requests
  maxAge: 86400 # agte of prefligt request cache

Useage

Listener CorsRequestListener is listened to kernel events of requests and add headers if this is CORS request and CORS allowed for that host.