2017 © Pedro Peláez
 

library silex-debugbar

php-debugbar provider for silex.

image

dongww/silex-debugbar

php-debugbar provider for silex.

  • Thursday, December 15, 2016
  • by dongww@gmail.com
  • Repository
  • 1 Watchers
  • 6 Stars
  • 5,477 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 5 Versions
  • 1 % Grown

The README.md

php-debugbar provider for Silex 2.*., (*1)

debugBar, (*2)

Install

composer require dongww/silex-debugbar *, (*3)

Usage

~~~ .php $app->register(new Dongww\Silex\Provider\DebugBarServiceProvider());, (*4)


The JS and CSS files will be loaded from vendor directory automatically. If vendor directory or debugBar's Resources directory already exists in the web public directory, you can set option 'debug_bar.auto_res' to `false`, and set option 'debug_bar.path' to resources directory. This will speed up the loading speed. ~~~ .php $app->register(new Dongww\Silex\Provider\DebugBarServiceProvider(), [ 'debug_bar.auto_res' => false, //Optional, default is true 'debug_bar.path' => '/debugbar', //Optional, default is null. ]);

Example

~~~ .php <?php use Silex\Application; use Dongww\Silex\Provider\DebugBarServiceProvider;, (*5)

require_once DIR . '/../vendor/autoload.php';, (*6)

$app = new Application(); $app['debug'] = true;, (*7)

if ($app['debug']) { $app->register(new DebugBarServiceProvider(), [ // 'debug_bar.auto_res' => false, //Optional, default is true // 'debug_bar.path' => '/debugbar', //Optional, default is null. ]); }, (*8)

$app->get('/', function (Application $app) { $app['debug_bar']['messages']->addMessage("Hello DebugBar!"); $app['debug_bar']['messages']->addMessage([ 'a' => 1, 'b' => 2, 'c' => 3, ]);, (*9)

return '<body><h1>This is an example for silex_debugbar provider.</h1></body>';

});, (*10)

$app->run(); ~~~, (*11)

Doctrine DBAL logs

If you use Doctrine Provider, sql logs will be automatically captured and displayed in debugBar., (*12)

The Versions

15/12 2016

dev-master

9999999-dev

php-debugbar provider for silex.

  Sources   Download

MIT

The Requires

 

debug silex debugbar

15/12 2016

v0.4.0

0.4.0.0

php-debugbar provider for silex.

  Sources   Download

MIT

The Requires

 

debug silex debugbar

27/11 2014

v0.3.0

0.3.0.0

php-debugbar provider for silex.

  Sources   Download

MIT

The Requires

 

debug silex debugbar

26/11 2014

v0.2.0

0.2.0.0

php-debugbar provider for silex.

  Sources   Download

MIT

The Requires

 

debug silex debugbar

14/09 2014

v0.1.0

0.1.0.0

php-debugbar provider for silex.

  Sources   Download

MIT

The Requires

 

debug silex debugbar