I have installed symfony2 using composer. The welcome page runs, the demo app runs and I can test the demo app using phpunit ok.
However, I cannot test symfony using phpunit; the directory structure seems to be messed up somehow.
The installation was as follows:
php composer.phar create-project symfony/framework-standard-edition path/ 2.1.2
It creates directories as follows:
app/ and vendor/symfony/symfony/
BUT
phpunit then tries to follow this path:
path/vendor/symfony/symfony/vendor/autoload.php
and there is no "vendor" directory structure under symphony.
Did I do something wrong?