saxulum/saxulum-webprofiler-provider

This package is abandoned and no longer maintained. No replacement package was suggested.

A extended webprofiler for saxulum (silex)

2.0.0 2016-07-14 06:35 UTC

This package is not auto-updated.

Last update: 2020-09-22 19:06:42 UTC


README

works with plain silex-php

Build Status Total Downloads Latest Stable Version Scrutinizer Code Quality

Features

  • Enhance the default silex web profiler with database informations

Requirements

  • php >=5.5
  • jdorn/sql-formatter ~1.1
  • psr/log 1.0.*
  • silex/silex ~2.0
  • silex/web-profiler ~2.0

Installation

The SilexWebProfiler from silex itself is needed!

$app->register(new Provider\WebProfilerServiceProvider(), array(
    'profiler.cache_dir' => __DIR__.'/../cache/profiler',
    'profiler.mount_prefix' => '/_profiler', // this is the default
));
$app->register(new Saxulum\SaxulumWebProfiler\Provider\SaxulumWebProfilerProvider());