Download the PHP package 3sidedcube/laravel-api-errors without Composer
On this page you can find all versions of the php package 3sidedcube/laravel-api-errors. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download 3sidedcube/laravel-api-errors
More information about 3sidedcube/laravel-api-errors
Files in 3sidedcube/laravel-api-errors
Package laravel-api-errors
Short Description A lightweight package for handling API error responses.
License MIT
Homepage https://github.com/3sidedcube/laravel-api-errors
Informations about the package laravel-api-errors
Laravel API Errors
This package provides an easy way to manage and handle error response for JSON API's.
Installation
You can install the package via composer:
Usage
There are 2 ways of generating an API error response:
API Error Exception
This package provides an exception called ApiErrorException
which you can extend. There are 3 methods which can
be set (2 of which are required):
code()
- This is a short string indicating the error code (required).message()
- A human-readable message providing more details about the error (required).statusCode()
- This HTTP status code of the error response. By default, this is set to 400 and is optional.
Once you have an exception, you can use the fromException()
method to generate an API error response:
Returning this response would generate the following json response:
Automatically returning the exception response
If you want to automatically return the JSON response from the exception, you can add the exception to the $dontReport
array in your app/Exceptions/Handler.php
like so:
Passing data directly
Alternatively you can use the create()
method to create an API error response:
Returning this response would generate the following json response:
Additional data
If you would like to pass additional "meta" data to the response, you can use the meta()
method or pass an array to
the create method like so:
or
Returning this response would generate the following json response:
Testing
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Credits
- Ben Sherred
- All Contributors
License
Laravel API Errors is open-sourced software licensed under the MIT license.
All versions of laravel-api-errors with dependencies
illuminate/routing Version ^8.0|^9.0|^10.0|^11.0
illuminate/support Version ^8.0|^9.0|^10.0|^11.0