nelmio / cors-bundle
Adds CORS (Cross-Origin Resource Sharing) headers support in your Symfony application
Installs: 69 283 050
Dependents: 143
Suggesters: 16
Security: 0
Stars: 1 891
Watchers: 17
Forks: 108
Open Issues: 7
Type:symfony-bundle
Requires
- psr/log: ^1.0 || ^2.0 || ^3.0
- symfony/framework-bundle: ^5.4 || ^6.0 || ^7.0
Requires (Dev)
- mockery/mockery: ^1.3.6
- symfony/phpunit-bridge: ^5.4 || ^6.0 || ^7.0
README
About
The NelmioCorsBundle allows you to send Cross-Origin Resource Sharing headers with ACL-style per-URL configuration.
Features
- Handles CORS preflight OPTIONS requests
- Adds CORS headers to your responses
- Configured at the PHP/application level. This is convenient but it also means that any request serving static files and not going through Symfony will not have the CORS headers added, so if you need to serve CORS for static files you probably should rather configure these headers in your web server
Installation
Require the nelmio/cors-bundle
package in your composer.json and update your dependencies:
composer require nelmio/cors-bundle
The bundle should be automatically enabled by Symfony Flex. If you don't use Flex, you'll need to enable it manually as explained in the docs.
Usage
See the documentation for usage instructions.
License
Released under the MIT License, see LICENSE.