phramz/staticfiles-middleware
最新稳定版本:v1.0.0
Composer 安装命令:
composer require phramz/staticfiles-middleware
包简介
This is a StackPHP middleware for phramz/staticfiles webserver
README 文档
README
This is a StackPHP middleware for the phramz/staticfile webserver (https://github.com/phramz/staticfiles)
Install
Install with Composer:
$ curl -sS https://getcomposer.org/installer | php
$ php composer.phar require phramz/staticfiles-middleware
Example
<?php use Symfony\Component\HttpFoundation\Request; // your static files will be served from this folder $webroot = '/var/www'; // if we cannot guess the files mime-type we'll use this default $defaultMimetype = 'application/octed-stream'; // files with the following extensions will not be delivered. We'll get a 404 instead. $exclude = ['php', 'key']; // if true requests to non existing ressources will be passed to the next app in stack. // if false the middleware will return a 404 response $ignoreNotFound = true; // create your application ... whatever it is e.g. Silex, Symfony2 etc. $app = new Application(); // build the stack $app = (new Stack\Builder()) ->push( 'Phramz\Staticfiles\Middleware\HttpServer', $webroot, $defaultMimetype, $exclude, $ignoreNotFound ) ->resolve($app); // dispatch the request $request = Request::createFromGlobals(); $response = $app->handle($request); $response->send(); // and shutdown $app->terminate($request, $response);
LICENSE
This project is under MIT license. Please read the LICENSE file for further information.
Credits
Some of the 3rd party libraries in use:
统计信息
- 总下载量: 15
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-08-01