CacheStatsBundle

Symfony Bundle for monitoring usage of OPCache, APCu and realpath cache

MIT License

Downloads
15.6K
Stars
7
Committers
1

PablokCacheStatsBundle

Installation

composer require --dev pablok/cache-stats-bundle

In case you don't use Symfony Flex please add this bundle to AppKernel.php

<?php
// app/AppKernel.php

public function registerBundles()
{
    // ...
    if (in_array($this->getEnvironment(), array('dev', 'test'))) {
        // ...
        $bundles[] = new PabloK\CacheStatsBundle\PabloKCacheStatsBundle();
    }
}

Example

License

MIT