palanik / lumen-cors
Cross-origin resource sharing (CORS) middleware for Lumen micro-framework.
Installs: 214 265
Dependents: 1
Suggesters: 0
Security: 0
Stars: 101
Watchers: 7
Forks: 31
Open Issues: 8
This package is auto-updated.
Last update: 2024-10-24 13:45:35 UTC
README
Cross-origin resource sharing (CORS) Middleware for Lumen micro-framework.
Installation
After you install lumen as per lumen docs, install lumen-cors from lumen
folder.
Install with Composer
Run composer require "palanik/lumen-cors:dev-master"
to install lumen-cors.
Manual Installation
Copy the file LumenCors.php into app/Http/Middleware
directory.
Usage
Global CORS
If you want CORS enabled for every HTTP request to your application, simply list the middleware class palanik\lumen\Middleware\LumenCors
in the $app->middleware() call of your bootstrap/app.php
file.
CORS for Routes
If you would like to enable CORS to specific routes, you should first assign the lumen-cors
middleware a short-hand key in your bootstrap/app.php
file.
$app->routeMiddleware([ 'cors' => 'palanik\lumen\Middleware\LumenCors', ]);
Then, you use the key in the route options array.
$app->get('/data', ['middleware' => 'cors', function() { // }]);
More info. - http://lumen.laravel.com/docs/middleware#registering-middleware