Skip to content

jeromemacias/Silex-Debug

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Silex Debug

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.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages