Download the PHP package saad/json-response-builder without Composer
On this page you can find all versions of the php package saad/json-response-builder. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download saad/json-response-builder
More information about saad/json-response-builder
Files in saad/json-response-builder
Package json-response-builder
Short Description this package semplifies sending API json response by using a standard and unique response structure
License MIT
Informations about the package json-response-builder
Json Response Builder Package
Install
Change Log
V 1.3.1
add feature to merge meta when adding data
addData(str $key, mix $val, bool $merge_meta)
V 1.3
Add Strict Mode and enabled by default:
in strict mode if data or meta are empty it will set it's value to null
instead of []
to turn of strickt mode, on constructor pass false
to disable strickt mode so that it will return data, and meta as empty array if they are empty
you can set mode on instance by the method strictMode(bool)
Usage
-
Basic Example:
inside your controller:
- the above example will output:
Available Methods
addData($key, $value)
Appends to data new member with the given key and value
mergeData($array)
merge given array with data with given array keys as keys, this is usefull when we want to send data as json array insteadof json object with key and value
this method also if the given array has key called 'meta' it will remove that key and add it to response meta
addMeta($key, $value)
Appends to meta new member with the given key and value
mergeMeta($array)
merge given array with meta
addHeader($header, $value)
add header to response headers
success($response_message = null)
set response success status to
true
, and set response message if supplied.
setMessage($response_message = null)
set response message if supplied.
error($message = null, $error_code = null)
set response success status to
false
and set nessage and error codephp $builder->error('Fails!', 2345) ->addError('validation', 'validation value');
// Output will be
{ "success": false, "meta": null,
"data": null, 'error': { "message": "Fails!", "code": 2345, "validation": "validation value" } "message": "Fails!" }
setStatusCode(301)
set response status code.
strictMode(bool)
default value
true
since
V1.3
enable or disable strict mode.
$builder->getResponse(); // Strict Mode Enabled, Output will be { "success": false, "meta": null, "data": null, "message": "" } $builder->strictMode(false)->getResponse(); // Strict Mode Disabled, Output will be { "success": false, "meta":[], "data":[], "message": "" }
getResponse($status_code = null)
set response status code if supplied, and return Response Object
License
The Laravel framework is open-sourced software licensed under the MIT license.README.md