A PHP library to describe API problems according to RFC 7870.
composer require abc/api-problem
use Abc\ApiProblem;
$apiProblem = new ApiProblem(
'http://domain.tld/problem/resource-not-found'),
'Resource Not Found',
404,
sprintf('Resource with id "%s" not found', $id),
$requestUri
);
$json = $apiProblem->toJson();
The MIT License (MIT). Please see License File for more information.