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 |
Convert response JSON key to camelCase.
In controller class
return response()->json($model);
// => ['userName' => 'foo', 'userKey' => 'bar', ...]
$ composer require 'grohiro/laravel-camelcase-json' '~1.0'
Add the service provider.
config/app.php
'provider' => [
// default providers
// ...
Grohiro\LaravelCamelCaseJson\CamelCaseJsonResponseServiceProvider::class,
],