benkle/auto-preflight-bundle

A simple bundle to automatically generate responses for CORS preflight.

0.90 2016-10-14 13:04 UTC

This package is not auto-updated.

Last update: 2024-04-23 20:00:43 UTC


README

A simple bundle to automatically generate responses for CORS preflight.

Install

Install with composer.

$ composer require benkle/auto-preflight-bundle

Add this to your kernel bundles:

new Benkle\AutoPreflightBundle\BenkleAutoPreflightBundle(),

Configuration

Add this section to your config.yaml:

benkle_auto_preflight:
    allow_origin: '*'
    allow_headers: x-auth-token

Both allow_origin and allow_headers are currently string values, and are send as is to the browser.

You also must use the field methods in your route definitions, or only GET will be available.