juliangut / slim-exception
Slim HTTP exceptions and exception handling
Fund package maintenance!
juliangut
Installs: 9 967
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 3
Forks: 1
Open Issues: 1
Requires
- php: ^8.0
- ext-mbstring: *
- slim/slim: ^4.11
- willdurand/negotiation: ^3.0
Requires (Dev)
- ext-dom: *
- ext-json: *
- ext-simplexml: *
- filp/whoops: ^2.15
- infection/infection: ~0.25|~0.27
- juliangut/easy-coding-standard-config: ^1.12
- juliangut/phpstan-config: ^1.1
- laminas/laminas-diactoros: ^2.20
- overtrue/phplint: ^4.0|^5.0|^6.0
- phpcompatibility/php-compatibility: ^9.3
- phpmd/phpmd: ^2.13
- phpstan/phpstan: ^1.11
- phpunit/phpunit: ^9.6.13|^10.3
- povils/phpmnd: ^3.2
- roave/security-advisories: dev-master
- symfony/var-dumper: ^6.0.4
Suggests
- filp/whoops: Enhance development error reporting (>=2.15)
- symfony/var-dumper: Help filp/whoops enhancing stack-traces (>=5.1)
README
slim-exception
Alternative Slim error handling with better response format negotiation, better exception logging and better development support
Installation
Composer
composer require juliangut/slim-exception
Usage
Require composer autoload file
require './vendor/autoload.php'; use Jgut\Slim\Exception\Handler\ErrorHandler; use Jgut\Slim\Exception\Whoops\Handler\ErrorHandler as WhoopsErrorHandler; use Negotiation\Negotiator; use Slim\Factory\AppFactory; use Whoops\Run as Whoops; // Instantiate the app $app = AppFactory::create(); // ... $callableResolver = $app->getCallableResolver(); $responseFactory = $app->getResponseFactory(); $logger = new Logger(); $errorHandler = $inDevelopment && class_exists(WhoopsErrorHandler::class) ? new WhoopsErrorHandler($callableResolver, $responseFactory, new Negotiator(), $logger) : new ErrorHandler($callableResolver, $responseFactory, new Negotiator(), $logger); // Add Error Middleware $errorMiddleware = $app->addErrorMiddleware($inDevelopment, true, true); $errorMiddleware->setDefaultErrorHandler($errorHandler); // ... $app->run();
Renderers
Custom error renderers are configured when using slim-exception error handlers. Fear not, out of the box ErrorHandler is a direct drop-in to change default Slim ErrorHandler
You can register your error renderers or completely change them
$errorHandler = new ErrorHandler($callableResolver, $responseFactory, new Negotiator()); // Set single error renderer $errorHandler->setErrorRenderer('application/xhtml+xml', MyCustomHtmlRenderer::class); // Completely replace error renderers $errorHandler->setErrorRenderers(['text/html' => MyCustomHtmlRenderer::class]);
Whoops
Developers deserve a better and more informative error handling while in development environment
Whoops is a great tool for this purpose and its usage is integrated in this package. There is a special Whoops error handler which can be used as default exception handler for development
Given Whoops renderers are meant for development displayErrorDetails argument on Slim\Interfaces\ErrorRendererInterface::__invoke
won't be considered and stacktrace will always be displayed
The example of how to include Whoops error handler is in the code above
For you to use this handler you'll need to require whoops first. Additionally, Symfony's var-dumper plays nice with whoops so require it too
composer require --dev filp/whoops
composer require --dev symfony/var-dumper
Handle all errors/exceptions
In order to fully integrate error handling with the environment you can register ExceptionHandler globally. In this way any triggered and unhandled error will be captured and treated by the error handler
use Jgut\Slim\Exception\ExceptionHandler; use Slim\Factory\AppFactory; // Instantiate the app $app = AppFactory::create(); // ... // Create and register $errorHandler in error middleware $request = Psr17ServerRequestFactoryInterface::createServerRequest(); $exceptionHandler = new ExceptionHandler($request, $errorHandler, $inDevelopment, true, true); $exceptionHandler->registerHandling(); // ... $app->run($request); // This error will be captured and gracefully handled trigger_error('This is embarrassing', \E_USER_ERROR);
Upgrade from 2.x
- Minimum PHP version is now 8.0
- Minimum Whoops version is now 2.15 as custom Inspector has been removed in favor of Whoop's frame filters
Contributing
Found a bug or have a feature request? Please open a new issue. Have a look at existing issues before.
See file CONTRIBUTING.md
License
See file LICENSE included with the source code for a copy of the license terms.