kars / json-response
Returns json format when this package gives value and data properties
1.0.0
2021-10-22 08:15 UTC
Requires
- php: >=5.3.0
- ext-json: *
- json-api-php/json-api: ^2.0
Requires (Dev)
- phpunit/phpunit: ^4.8 || ^5.0
This package is not auto-updated.
Last update: 2025-03-22 22:36:54 UTC
README
Returns json format when this package gives value and data properties
Installation
composer require kars/json-response
Use
require_once "vendor/autoload.php";
$test= [
'name' => 'mehmet',
'email' => 'mehmetcanak99@gmail.com',
];
new \Kars\JsonResponse\Response('ok', '', $test);
Params (required)
- success or ok - 200 http status
- unauthorized - 401 http status
- exception - 500 http status
Response
{
"status":"ok",
"data":
{
"name":"mehmet",
"email":"mehmetcanak99@gmail.com"
}
}