Skip to content

JunaidQadirB/Response

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Response

Response is tiny PHP package which handles HTTP response, status codes and messages returned from different functions. Useful for unifiying API responses.

Installation

$ composer require jq/response

Laravel 5 Configuration

Add the following line to the providers array in app/config.php

JunaidQadir\Response\ResponseServiceProvider::class

And the the following line to the aliases array in app/config.php

'AjaxResponse' => JunaidQadir\Response\ResponseFacade::class

Standard PHP Usage

to return json in response of an AJAX request

$response     = new \JunaidQadir\Response\Response();
echo $response->json('success', 'Thank You');
exit;

Laravel5 Usage

echo AjaxResponse::json('success', 'Thank You');

About

Response is tiny PHP package which handles HTTP response, status codes and messages returned from different functions. Useful for unifiying API responses.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages