jeromemacias/silex-debug

An integration of the Symfony var dumper for Silex

dev-master / 2.0.x-dev 2015-07-31 06:46 UTC

This package is not auto-updated.

Last update: 2024-04-27 15:31:18 UTC


README

The Silex Debug service provider allows you to use the wonderful Symfony VarDumper component in your Silex application. It provide an integration with the Symfony web profiler toolbar and Twig.

To install this library, run the command below and you will get the latest version:

composer require jeromemacias/silex-debug ~2.0@dev

And enable it in your application:

use Silex\Provider;

$app->register(new Provider\DebugServiceProvider(), array(
    'debug.max_items' => 250, // this is the default
    'debug.max_string_length' => -1, // this is the default
));

The provider depends on WebProfilerServiceProvider, so you also need to enable this if that's not already the case:

$app->register(new Provider\WebProfilerServiceProvider());

Make sure to register all other required or used service providers before DebugServiceProvider.