PHPackages                             mremi/templating-extra-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Templating &amp; Views](/categories/templating)
4. /
5. mremi/templating-extra-bundle

ActiveSymfony-bundle[Templating &amp; Views](/categories/templating)

mremi/templating-extra-bundle
=============================

Profiles all the rendered templates (Twig or PHP) during a Symfony2 page rendering

v1.0.0(12y ago)620.4kMITPHPPHP &gt;=5.3.3

Since Aug 12Pushed 11y ago2 watchersCompare

[ Source](https://github.com/mremi/TemplatingExtraBundle)[ Packagist](https://packagist.org/packages/mremi/templating-extra-bundle)[ Docs](https://github.com/mremi/TemplatingExtraBundle)[ RSS](/packages/mremi-templating-extra-bundle/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (1)Versions (2)Used By (0)

MremiTemplatingExtraBundle
==========================

[](#mremitemplatingextrabundle)

[![SensioLabsInsight](https://camo.githubusercontent.com/dc8a2682c56d113d0d2cfa32455a5f6f66d6354b62b5d3f0e3985a1df2d4343d/68747470733a2f2f696e73696768742e73656e73696f6c6162732e636f6d2f70726f6a656374732f36663136383536392d373937352d346238612d626331352d6337393434366261306665662f6269672e706e67)](https://insight.sensiolabs.com/projects/6f168569-7975-4b8a-bc15-c79446ba0fef)

[![Build Status](https://camo.githubusercontent.com/ac3a6e1911a17e4f3ca79ac7ffb3beb9f82c219aca686d29e302eb951d96f11b/68747470733a2f2f6170692e7472617669732d63692e6f72672f6d72656d692f54656d706c6174696e67457874726142756e646c652e706e673f6272616e63683d6d6173746572)](https://travis-ci.org/mremi/TemplatingExtraBundle)[![Total Downloads](https://camo.githubusercontent.com/1f527bf2bc81b0205b5660c1cf9b7ab3eda41b92cf8a987bbce262a93b423f6b/68747470733a2f2f706f7365722e707567782e6f72672f6d72656d692f74656d706c6174696e672d65787472612d62756e646c652f646f776e6c6f6164732e706e67)](https://packagist.org/packages/mremi/templating-extra-bundle)[![Latest Stable Version](https://camo.githubusercontent.com/50be346542a0fc14ad32bf58e2e43cd7a29e415c01790e358c6d70aa9c014002/68747470733a2f2f706f7365722e707567782e6f72672f6d72656d692f74656d706c6174696e672d65787472612d62756e646c652f762f737461626c652e706e67)](https://packagist.org/packages/mremi/templating-extra-bundle)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/50be7e35e0516c797814dd91a74a0932696489392106b7c95eda45bdb6a1812e/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6d72656d692f54656d706c6174696e67457874726142756e646c652f6261646765732f7175616c6974792d73636f72652e706e673f733d32616131323932386235633038646233316264303030333263643466346533333666376633393530)](https://scrutinizer-ci.com/g/mremi/TemplatingExtraBundle/)[![Code Coverage](https://camo.githubusercontent.com/04b1084276fc4ecb1658bbf6b114900f731757aaac1d512c813d6d2a1dcb3116/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6d72656d692f54656d706c6174696e67457874726142756e646c652f6261646765732f636f7665726167652e706e673f733d64323662303862616430316265363165376336363630393533643965623239366366383330396137)](https://scrutinizer-ci.com/g/mremi/TemplatingExtraBundle/)

This bundle profiles all the rendered templates (Twig or PHP) during a Symfony2 page rendering. This only includes templates which are rendered by `render` and `renderResponse` through the templating service (for instance, `include` and `embed` Twig tags are not tracked).

License
-------

[](#license)

This bundle is available under the [MIT license](Resources/meta/LICENSE).

Prerequisites
-------------

[](#prerequisites)

This version of the bundle requires Symfony 2.1+.

**Basic Docs**

- [Installation](#installation)
- [Profiler](#profiler)
- [Contribution](#contribution)

Installation
------------

[](#installation)

Installation is a quick 2 step process:

1. Download MremiTemplatingExtraBundle using composer
2. Enable the Bundle

### Step 1: Download MremiTemplatingExtraBundle using composer

[](#step-1-download-mremitemplatingextrabundle-using-composer)

Add MremiTemplatingExtraBundle in your composer.json:

```
{
    "require": {
        "mremi/templating-extra-bundle": "dev-master"
    }
}
```

Now tell composer to download the bundle by running the command:

```
$ php composer.phar update mremi/templating-extra-bundle
```

Composer will install the bundle to your project's `vendor/mremi` directory.

### Step 2: Enable the bundle

[](#step-2-enable-the-bundle)

Enable the bundle in the kernel:

```
