I am trying to install Buzz for Symfony2. I added it to the deps file and tried to update my providers:
php bin/vendors update
The command simply tells me that I installed the standard version and that I should try to use:
php bin/vendors install
instead of this. Which I did.
But then an error appears and tells me:
Updating deps.lock sh:/var/www/Symfony/vendor/bundles/Sensio/Bundle/DistributionBundle/Resources/bin/build_bootstrap.php: not found PHP Fatal error: Class 'Doctrine\Common\Annotations\AnnotationRegistry' not found in /var/www/Symfony/app/autoload.php on line 37 PHP Fatal error: Class 'Doctrine\Common\Annotations\AnnotationRegistry' not found in /var/www/Symfony/app/autoload.php on line 37
And then nothing works, which is not surprising, because the folder of my suppliers is almost empty.
Has anyone encountered this problem before? Any clue on how to fix it?
Edit:
I figured out the origin of this error. I did not have git installed, so I did:
sudo apt-get install git-core
Check out this link for more information: http://comments.gmane.org/gmane.comp.php.symfony.symfony2/8239
However, now I have one more error ("Lookes for namespace" buzz.client.curl ", found none"). I am doing another thread for this, as this is not the same problem ( here) .
source share