dragonfire1119/cors-lumen 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

dragonfire1119/cors-lumen

最新稳定版本:v0.1.0

Composer 安装命令:

composer require dragonfire1119/cors-lumen

包简介

Cross-origin resource sharing (CORS) middleware & ServiceProvider for Lumen micro-framework.

README 文档

README

Latest Stable Version License

Cross-origin resource sharing (CORS) Middleware for Lumen micro-framework.

Install with Composer

Run composer require "dragonfire1119/cors-lumen:dev-master" to install cors-lumen.

Usage

Add CORS ServiceProvider

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');

Global CORS

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.

CORS for Routes

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

Contributing

If you have a change fork it & make a pull request. :)

License

Released under the MIT, see LICENSE.

统计信息

  • 总下载量: 474
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 3
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 3
  • Watchers: 2
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-04-26