Package Data | |
---|---|
Maintainer Username: | dragonfire1119 |
Package Create Date: | 2015-04-26 |
Package Last Update: | 2015-06-26 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-17 03:01:00 |
Package Statistics | |
---|---|
Total Downloads: | 472 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 3 |
Total Watchers: | 2 |
Total Forks: | 1 |
Total Open Issues: | 0 |
Cross-origin resource sharing (CORS) Middleware for Lumen micro-framework.
Run composer require "dragonfire1119/cors-lumen:dev-master"
to install cors-lumen.
If you want to allow OPTIONS method then your going to need to enable the CorsServiceProvider in the bootstrap/app.php
file.
$app->register('Dragonfire1119\Cors\Providers\CorsServiceProvider');
If you want CORS enabled for every HTTP request to your application, simply list the middleware class Dragonfire1119\Cors\Middleware\CorsMiddleware
in the $app->middleware() call of your bootstrap/app.php
file.
If you would like to enable CORS to specific routes, you should first assign the cors
middleware a short-hand key in your bootstrap/app.php
file.
$app->routeMiddleware([
'cors' => 'Dragonfire1119\Cors\Middleware\CorsMiddleware',
]);
Then, you use the key in the route options array.
$app->get('/api/test', ['middleware' => 'cors', function() {
//
}]);
More info. - http://lumen.laravel.com/docs/middleware#registering-middleware
If you have a change fork it & make a pull request. :)
Released under the MIT, see LICENSE.