budgetdumpster/slim-content-negotiation

Slim 3.0 的内容协商中间件

1.0.0 2017-12-13 17:39 UTC

This package is not auto-updated.

Last update: 2024-09-23 07:28:14 UTC


README

安装

composer require budgetdumpster/slim-content-negotiation:1.0.0

使用方法

内容协商中间件可以轻松附加到 Slim 路由,例如这样

<?php

use BudgetDumpster\Middleware\ContentNegotiation;

$app->get('/', function($request, $response, $args) {
    echo 'hello world';
})->add(new ContentNegotiationHalJson);

这将拒绝任何不包含提供的内容类型的请求。