texthtml / whoops-silex
Integrates the Whoops library into Silex
Installs: 128 447
Dependents: 1
Suggesters: 0
Security: 0
Stars: 15
Watchers: 3
Forks: 6
Open Issues: 2
Requires
- silex/silex: ~2.0@dev
- texthtml/whoops-pimple: ~1.0
This package is auto-updated.
Last update: 2024-10-26 14:54:42 UTC
README
Integrates the Whoops library into Silex whoops
whoops is an error handler base/framework for PHP. Out-of-the-box, it provides a pretty error interface that helps you debug your web projects, but at heart it's a simple yet powerful stacked error handling system.
Module installation
In your project root folder
composer require texthtml/whoops-silex ~1.0
- In your Silex container configuration, register the WhoopsServiceProvider:
use WhoopsSilex\WhoopsServiceProvider; $container->register(new WhoopsServiceProvider);