lkj/httpstatus

Defining http status Code, Messages and Response in constants

Maintainers

Package info

github.com/lokeshkjain/http-status-constants

pkg:composer/lkj/httpstatus

Statistics

Installs: 14

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

0.0.1 2018-07-09 07:27 UTC

This package is not auto-updated.

Last update: 2026-03-15 11:32:43 UTC


README

How To Install

composer require lkj/httpstatus

Where To Use

This package might be useful when you are creating microservices or building API's.

How to use

use HttpStatus\Response;

$response_obj = new Response;

$sucees_reponse = $response_obj::SUCCESS_OK;

IF you need to use only status code or status message then you can use Code or Message Class.