PHPackages                             szmnmichalowski/doctrine-cache-toolbar - 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. [Database &amp; ORM](/categories/database)
4. /
5. szmnmichalowski/doctrine-cache-toolbar

ActiveLibrary[Database &amp; ORM](/categories/database)

szmnmichalowski/doctrine-cache-toolbar
======================================

Statistics for Second Level Cache shown on ZendDeveloperTools

1.0.0(9y ago)11004[3 PRs](https://github.com/szmnmichalowski/doctrine-cache-toolbar/pulls)MITPHPPHP ^5.6 || ^7.0

Since Mar 25Pushed 7y ago1 watchersCompare

[ Source](https://github.com/szmnmichalowski/doctrine-cache-toolbar)[ Packagist](https://packagist.org/packages/szmnmichalowski/doctrine-cache-toolbar)[ Docs](https://github.com/szmnmichalowski/DoctrineCacheToolbar)[ RSS](/packages/szmnmichalowski-doctrine-cache-toolbar/feed)WikiDiscussions master Synced 4w ago

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

DoctrineCacheToolbar
--------------------

[](#doctrinecachetoolbar)

[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE)[![Build Status](https://camo.githubusercontent.com/21e7fafcfaf3c69bd3b4996ca527167d052dfe2fc8263b383673fb1e29113de9/68747470733a2f2f7472617669732d63692e6f72672f737a6d6e6d696368616c6f77736b692f446f637472696e654361636865546f6f6c6261722e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/szmnmichalowski/DoctrineCacheToolbar)[![Code Coverage](https://camo.githubusercontent.com/bbaf87914ecee4e0a9b7927c4528547daf749a11e2d2e8a7927bbe7a935f1d17/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f737a6d6e6d696368616c6f77736b692f446f637472696e654361636865546f6f6c6261722f6261646765732f636f7665726167652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/szmnmichalowski/DoctrineCacheToolbar/?branch=master)

DoctrineCacheToolbar is a [Zend Framework 2/3](http://framework.zend.com/) module which is integrated with [Doctrine 2](http://www.doctrine-project.org/).
It does show statistics for regions while [Second Level Cache](http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/second-level-cache.html) is enabled in doctrine's configuration

[![Statistics in DoctrineCacheToolbar](https://camo.githubusercontent.com/45c6d8f9b178b37209c8de613ee8ac7e7d5f697bac6a437779a29f1c7994093c/687474703a2f2f692e696d6775722e636f6d2f567535747243472e706e67)](https://camo.githubusercontent.com/45c6d8f9b178b37209c8de613ee8ac7e7d5f697bac6a437779a29f1c7994093c/687474703a2f2f692e696d6775722e636f6d2f567535747243472e706e67)

### Installation

[](#installation)

You can install this module by cloning this project into your **./vendor/** directory, or using composer, which is more recommended:
**1.**Add this project into your composer.json

```
"require": {
    "szmnmichalowski/doctrine-cache-toolbar": "dev-master"
}

```

**2.**Update your dependencies

```
$ php composer.phar update

```

**3.**Add module to your **application.config.php**. It requires `DoctrineModule`, `DoctrineORMModule` and `ZendDeveloperTools`.

```
return array(
    'modules' => array(
        'DoctrineModule',
        'DoctrineORMModule',
        'ZendDeveloperTools',
        'DoctrineCacheToolbar' //
