2017 © Pedro Peláez
 

symfony-bundle profiler-dashboard-bundle

This bundle compile metrics of last requests into one view.

image

elao/profiler-dashboard-bundle

This bundle compile metrics of last requests into one view.

  • Friday, September 2, 2016
  • by Elao
  • Repository
  • 5 Watchers
  • 0 Stars
  • 253 Installations
  • HTML
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Elao Profiler Dashboard Bundle

What is it?

This bundle compile metrics (request info, performance metrics, db queries, etc.) of last requests (from the Symfony Profiler) into one view., (*1)

example, (*2)

Installation

Symfony >= 2.7

Add repository to composer, (*3)

"repositories": [
    {
        "url": "https://github.com/Elao/elao-profiler-dashboard-bundle.git",
        "type": "git"
    }
],

Require the bundle in Composer:, (*4)

$ composer require elao/profiler-dashboard-bundle dev-master@dev

Install the bundle in your AppKernel:, (*5)

<?php
// app/AppKernel.php

public function registerBundles()
{
    // ...

    if (in_array($this->getEnvironment(), array('dev', 'test'), true)) {
        // ...
        $bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();

        // Elao Profiler Dashboard
        $bundles[] = new Elao\Bundle\ProfilerDashboardBundle\ElaoProfilerDashboardBundle();
    }
}

Import the rounting in your routing_dev.yml configuration file:, (*6)

// app/config/routing_dev.yml
_elao_profiler_dashboard:
    resource: "@ElaoProfilerDashboardBundle"
    type:     annotation
    prefix:   /_profiler_dashboard

Go on http://app.domain.dev/app_dev.php/_profiler_dashboard/metrics, (*7)

The Versions

02/09 2016

dev-master

9999999-dev https://github.com/Elao/elao-profiler-dashboard-bundle

This bundle compile metrics of last requests into one view.

  Sources   Download

MIT

The Requires

 

profiler elao

02/09 2016

1.0.0

1.0.0.0 https://github.com/Elao/elao-profiler-dashboard-bundle

This bundle compile metrics of last requests into one view.

  Sources   Download

MIT

The Requires

 

profiler elao