kosmosx/response

Response service for Symfony & Laravel/Lumen Framework.

Installs: 148

Dependents: 1

Suggesters: 0

Security: 0

Stars: 15

Watchers: 2

Forks: 0

Open Issues: 0

Type:package

1.0.4 2019-06-19 17:43 UTC

This package is auto-updated.

Last update: 2024-04-20 04:38:30 UTC


README

Let's go

Composer

composer require kosmosx/response

require __DIR__ . '/vendor/autoload.php';
$response = new Kosmosx\Response\RestResponse();

$handler = Kosmosx\Response\Exceptions\Handler();
$handler->setExceptionHandler();  

use it

$response = new Kosmosx\Response\RestResponse($content, $status, $headers); //constructor
$response = new Kosmosx\Response\Factory\FactoryResponse::success(); //factory

$response->withData(true); //add to json array with key 'data'

Example

$response->success()
         ->withData(['test' => true])
         ->withData(['test2' => false])
         ->withMessage('Microservice Lumen work')
         ->withState();

//response 				
{
    "data": {
        "test": true,
        "test2": false
    },
    "messages": "Microservice Lumen work",
    "state": "OK"
}

en: documentation

it: documentazione

If you find a bug or want to contribute, write to developer@fabriziocafolla.com