texthtml/whoops-silex

Integrates the Whoops library into Silex

1.0.3 2015-04-09 08:49 UTC

This package is auto-updated.

Last update: 2024-04-24 19:01:29 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.

Latest Stable Version License Total Downloads Scrutinizer Code Quality

Module installation

In your project root folder

  1. composer require texthtml/whoops-silex ~1.0
  2. In your Silex container configuration, register the WhoopsServiceProvider:
use WhoopsSilex\WhoopsServiceProvider;
$container->register(new WhoopsServiceProvider);

Whoops!