texthtml / whoops-silex
This package is abandoned and no longer maintained.
No replacement package was suggested.
Integrates the Whoops library into Silex
1.0.3
2015-04-09 08:49 UTC
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);