grohiro / laravel-camelcase-json by grohiro

Convert response JSON key to camelCase
70,284
27
4
Package Data
Maintainer Username: grohiro
Package Create Date: 2017-04-20
Package Last Update: 2021-01-15
Language: PHP
License: MIT
Last Refreshed: 2024-11-19 03:17:18
Package Statistics
Total Downloads: 70,284
Monthly Downloads: 883
Daily Downloads: 31
Total Stars: 27
Total Watchers: 4
Total Forks: 4
Total Open Issues: 5

laravel-camelcase-json

Convert response JSON key to camelCase.

Usage

In controller class

return response()->json($model);
// => ['userName' => 'foo', 'userKey' => 'bar', ...]

Requirements

  • Laravel 5+

Install

$ composer require 'grohiro/laravel-camelcase-json' '~1.0'

Add the service provider.

config/app.php

'provider' => [
	// default providers
	// ...
	
	Grohiro\LaravelCamelCaseJson\CamelCaseJsonResponseServiceProvider::class,
],