matthv/laravel-dingo-transform

This repository lets your API users pass in and receive camelCased or snake_cased keys while your app receives and produces snake_cased ones.

v2.0.0 2023-08-24 17:30 UTC

This package is auto-updated.

Last update: 2024-04-24 18:55:50 UTC


README

This repository extends the Dingo API package. It lets your API users pass in and receive camelCased or snake_cased keys while your app receives and produces snake_cased ones.

Installation

composer require 'matthv/laravel-dingo-transform' '~2.0'

Requirements

  • Laravel 9/10
  • api-ecosystem-for-laravel/dingo-api > 4.1

Use

Include a X-Key-Inflection header with values of camel or snake in your JSON API requests.

snake_case camelCase

This repo is inspired by the gem "olive_branch"