xgbnl/response

RESTFul style JSON responder.

Maintainers

Package info

github.com/xgbnl/laravel-response

pkg:composer/xgbnl/response

Statistics

Installs: 11

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

dev-main 2025-11-10 23:12 UTC

This package is auto-updated.

Last update: 2026-03-10 23:49:34 UTC


README

RESTFul style JSON responder.

Support laravel.

install

composer require xgbnl/response dev-main

GET Method.

{
  "msg": "success",
  "code": 200,
  "data": null
}

POST、PATCH Methods.

{
  "msg": "created",
  "code": 201,
  "data": null
}

DELETE Method.

{
  "msg": "deleted",
  "code": 204,
  "data": null
}