robue-a7119895
robue-a7119895

Reputation: 816

Symfony component not being installed for Silex

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.

enter image description here

Upvotes: 0

Views: 48

Answers (1)

qooplmao
qooplmao

Reputation: 17759

You can increase composers timeout limit in the command line like..

COMPOSER_PROCESS_TIMEOUT=1000 php composer.phar update 

Upvotes: 1

Related Questions