vluzrmos/lumen-cors

This package is abandoned and no longer maintained. The author suggests using the fruitcake/laravel-cors package instead.

A Simple Lumen CORS.

Installs: 145 602

Dependents: 0

Suggesters: 0

Security: 0

Stars: 46

Watchers: 4

Forks: 10

Open Issues: 1

Type:package

v2.1.2 2017-06-19 19:23 UTC

README

Please consider to use fruitcake/laravel-cors, that is part of Laravel core.

Lumen Cors Package

Join the chat at https://gitter.im/vluzrmos/lumen-cors

Lumen Version Latest Stable Version Total Downloads License Build Status StyleCI Scrutinizer Code Quality

A Simple Cross Origin Resource Sharing for Lumen Framework.

Note: That should works fine on Laravel Framework too, but the tests are performed to Lumen.

Install

composer require "vluzrmos/lumen-cors=2.1.*"

Configure

On boostrap/app.php register the middleware:

$app->middleware([
	//...,
	'Vluzrmos\LumenCors\CorsMiddleware'
]);

You are free to use ::class notation.

And that is it!

Considerations

That package stands to be free of configurations, then if you want a more configurable package please consider to see one of these: