A simple bundle to automatically generate responses for CORS preflight.
Install with composer.
$ composer require benkle/auto-preflight-bundle
Add this to your kernel bundles:
new Benkle\AutoPreflightBundle\BenkleAutoPreflightBundle(),Add this section to your config.yaml:
benkle_auto_preflight:
allow_origin: '*'
allow_headers: x-auth-tokenBoth 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.