I have small project made in symfony2 when I try to build it on my server it\'s always fails when unzipping symfony. Build was OK and suddenly composer won\'t unzip symfony
The easiest method is add config option to composer.json file, Add process-timeout 0, That's all. It works anywhere.
{ ..... "scripts": { "start": "php -S 0.0.0.0:8080 -t public public/index.php" }, "config": { "process-timeout":0 } }