You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 23, 2022. It is now read-only.
I have installed doctrine/cache trough doctrine/doctrine-cache-bundle but it keeps showing me the error message doctrine_cache fetcher needs that you install "doctrine/cache.
This error comes from the call to zendCacheExists returning null during the call
case 'zend_cache' :
if (!$this->zendCacheExists()) {
throw new InvalidConfigurationException('zend_cache fetcher needs that you install "knplabs/knp-zend-cache-bundle"');
}
The zendCacheExists implementation
//Knp\Bundle\LastTweetsBundle\DependencyInjection\KnpLastTweetsExtension.php
protected function zendCacheExists()
{
return class_exists('Zend\Cache\Manager');
}
I have installed doctrine/cache trough doctrine/doctrine-cache-bundle but it keeps showing me the error message doctrine_cache fetcher needs that you install "doctrine/cache.
This error comes from the call to
zendCacheExistsreturning null during the callThe zendCacheExists implementation