Reputation: 816
I have basically done nothing more than
$ https://github.com/silexphp/Silex.git
$ cd Silex
$ curl -sS https://getcomposer.org/installer | php
$ php composer.phar update
Always, the same step, and I am getting this error for the fifth time.
Upvotes: 0
Views: 48
Reputation: 17759
You can increase composers timeout limit in the command line like..
COMPOSER_PROCESS_TIMEOUT=1000 php composer.phar update
Upvotes: 1