定制 phramz/staticfiles-middleware 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

phramz/staticfiles-middleware

最新稳定版本:v1.0.0

Composer 安装命令:

composer require phramz/staticfiles-middleware

包简介

This is a StackPHP middleware for phramz/staticfiles webserver

README 文档

README

Build Status Scrutinizer Code Quality Code Coverage SensioLabsInsight

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

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-08-01