free2er/json-negotiator-bundle

1.0.1 2019-11-28 19:14 UTC

This package is auto-updated.

Last update: 2024-08-29 04:43:21 UTC


README

JSON Negotiator Bundle

安装

此组件可以使用 Composer 依赖管理器安装。

  1. 安装Composer

  2. 将组件作为项目依赖项安装

     composer require free2er/json-negotiator-bundle
    
  3. 启用捆绑包

<?php

// config/bundles.php
return [
    // ...
    Free2er\Json\JsonNegotiatorBundle::class => ['all' => true],
    // ...
];
  1. 配置协商选项
# config/packages/json_negotiator.yaml
json_negotiator:
    content_types:
        - json
        - jsonld
    methods:
        - POST
        - PATCH
        - PUT 
  1. 完成!