symfony-bundle cache-bundle
Cache Bundle
igdr/cache-bundle
Cache Bundle
- Tuesday, January 5, 2016
- by igdr
- Repository
- 1 Watchers
- 0 Stars
- 958 Installations
- PHP
- 1 Dependents
- 0 Suggesters
- 1 Forks
- 0 Open issues
- 1 Versions
- 0 % Grown
Cache Bundle
Installation
Add the bundle to your composer.json
:, (*1)
"igdr/cache-bundle" : "dev-master"
and run:, (*2)
php composer.phar update
Then add the CacheBundle to your application kernel:, (*3)
// app/IgdrKernel.php
public function registerBundles()
{
return array(
// ...
new Igdr\Bundle\CacheBundle\IgdrCacheBundle(),
// ...
);
}
Add configuration to config.yml, (*4)
igdr_cache:
cache_provider: doctrine_cache.providers.app_cache