LaravelPackages.net
Acme Inc.
Toggle sidebar
denismitr/laracors

Cross Origin Resource Sharing Middleware for Laravel or Lumen

113
3
v0.6
About denismitr/laracors

denismitr/laracors is a Laravel package for cross origin resource sharing middleware for laravel or lumen. It currently has 3 GitHub stars and 113 downloads on Packagist (latest version v0.6). Install it with composer require denismitr/laracors. Discover more Laravel packages by denismitr or browse all Laravel packages to compare alternatives.

Last updated

LARACORS

Laravel Cross Origin Resource Sharing Middleware

This middleware is designed specifically for the Laravel and Lumen frameworks and the RESTful APIs builded with them. It allows requests to made from JS frontends of other apps.

Author

Denis Mitrofanov

TheCollection.ru

Installation


Use composer to install the package:

composer require denismitr/laracors

Laravel

Add to config/app.php:

'providers' => [
    ...
    \Denismitr\Laracors\LaravelCorsServiceProvider::class,
],

Include in your app/Http/Kernel.php to the appropriate section (all requests if all your routes are API or named middleware + API middleware group to make it work for every api route or just named middleware):

Global middleware

protected $middleware = [
    ...
    \Denismitr\Laracors\Cors::class
];

Publish the config file:

php artisan vendor:publish  --provider="Denismitr\Laracors\LaravelCorsServiceProvider"

Edit the config/laracors.php file to your needs.

Named middleware
---------------
```php

protected $routeMiddleware = [
    ...
    'cors' => \Denismitr\Laracors\LaravelCorsServiceProvider::class,
];

protected $middlewareGroups = [
    'web' => [
        ...
    ],

    'api' => [
        ...
        'cors'
    ],
];

Middleware parameters

Route::put('post/{id}', function ($id) {
    //
})->middleware('cors:get,post,put');

Lumen

Add the following lines to bootstrap/app.php:

$app->register('\Denismitr\Laracors\LumenCorsServiceProvider');
$app->middleware([
    .....
    '\Denismitr\Laracors\Cors',
]);

Star History Chart