After creating or updating a Symfony 2.6.1 project with composer, I get a "Vendor libraries must be installed" error and it suggests running php composer.phar install
to install them.
The exact steps I'm taking:-
composer create-project symfony/framework-standard-edition my_new_project/
cd my_new_project
This appears to run without any problems, and as far as I can tell, does download all the necessary vendor packages. However if I then run:-
php app/check.php
This results in:-
* Vendor libraries must be installed
> Vendor libraries are missing. Install composer following
> instructions from http://getcomposer.org/. Then run "php
> composer.phar install" to install them.
I've tried running composer update
, composer install
, deleting the composer cache, but nothing I have tried so far resolves this error.
From testing numerous versions of Symfony, I get this error with all versions of Symfony >= 2.5.0. Any project I create in the same way using Symfony <= 2.4.8 works just fine.
I'm running PHP 5.6.4 (installed via MacPorts) on OS X.
I'm bit of a noob when it comes to composer, so any help would be much appreciated!