Note: I know this is a PHP question, but - and I could be wrong here - but I think the problem may only exist with PHP, composer on ubuntu.
Anyway, almost every tutorial, including composer itself say run the composer require command to install a package, e.g.
composer require robmorgan/phinx
However, for me, on Ubuntu , all this ever does is hang the terminal, until I Ctrl+c of of the terminal.
How can I get this command to work?
strace -f composer require robmorgan/phinx– heemayl May 28 '17 at 03:06stracecommand. the output is that it sits there in a polling loop. it seems to be waiting for some kind of network or remote response – the_velour_fog May 28 '17 at 03:11connect()andsendto()calls as well... – heemayl May 28 '17 at 03:19