To install vendors for Symfony 2.1.0 I'm running php composer.phar install but it gives error during Generating autoload files.
Error is:
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in on line 26
Script Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::buildBootstrap handling the post-install-cmd event terminated with an exception
It works fine on localhost, but not on server. Not sure what the problem is with the php set up?
EDIT:
PHP is 5.3.13. I checked that beforehand.
I ran app/check.php and everything is OK, except warning for accelerator.
I could successfully install composer as well.
The composer.json has the same values as the 2.1 symfony-standard branch:
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web"
}
php -von the console should display you the installed php version. – Pierre Sep 12 '12 at 16:36symfony-app-dirandsymfony-web-dirin your composer.json don't contain any backslashes. – Pierre Sep 13 '12 at 10:29