I have a Vagrant running Linux and I\'m trying to install Symfony.
After the command composer create-project symfony/framework-standard-edition ./ \"2.5.*\"
It happened once to me and it turns out that I was hitting composer's timeout.
You could take the following measures to gain some speed:
dist as preferred install type.https protocol for github, which is faster.~/.composer/config.json
{
"config": {
"process-timeout": 600,
"preferred-install": "dist",
"github-protocols": ["https"]
}
}
If you still have problems after that, you can also clear composer's cache:
rm -rf ~/.composer/cache