I want to integrate the LiipImageBundle in my Symfony 2.1 project.
I installed the bundle and the imagine/Imagine v.0.4.0
bundle via composer.
It's seems to work fine, except, that the modified images are not saved.
The error.log
states:
PHP Fatal error: Class 'Imagine\\Imagick\\Imagine' not found in /var/www/app/cache/prod/appProdProjectContainer.php on line 365
This line in appProdProjectContainer.php
states:
protected function getLiipImagineService()
{
return $this->services['liip_imagine'] = new \Imagine\Imagick\Imagine();
}
I have no idea if this is correct or not. Have you guys any idea why PHP cannot find the class?