benkle / auto-preflight-bundle
A simple bundle to automatically generate responses for CORS preflight.
Installs: 211
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- symfony/dependency-injection: >=2.8
- symfony/http-foundation: >=2.8
- symfony/http-kernel: >=2.8
- symfony/routing: >=2.8
Requires (Dev)
- phpunit/phpunit: ^5.4
This package is not auto-updated.
Last update: 2024-11-05 22:32:09 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.