PHP code example of eonx-com / apiformats

1. Go to this page and download the library: Download eonx-com/apiformats library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

eonx-com / apiformats example snippets


$formats = [
    <RequestEncoderInterface> => [<mime_type>, <mime_type>, ...]
];

// config/api-formats.php

return [
    'formats' => [
        JsonRequestEncoder::class => ['application/json'],
        XmlRequestEncoder::class => ['(application|text)/xml'],
        YourCustomerEncoder::class => ['you-custom-mime-type']
    ]
];