JSON Negotiator Bundle
This component can be installed with the Composer dependency manager.
-
Install the component as a dependency of your project
composer require free2er/json-negotiator-bundle
-
Enable the bundle
<?php
// config/bundles.php
return [
// ...
Free2er\Json\JsonNegotiatorBundle::class => ['all' => true],
// ...
];
- Configure negotiation options
# config/packages/json_negotiator.yaml
json_negotiator:
content_types:
- json
- jsonld
methods:
- POST
- PATCH
- PUT
- Done!