Reputation: 164
Every time I try to install Composer with curl -sS https://getcomposer.org/installer | php
, I get an SSL certificate error, which then asks me to use -k
which results in nothing happening. Any advice is great.
Thanks,
Upvotes: 0
Views: 2297
Reputation: 2774
curl -sSk https://getcomposer.org/installer | php -- --disable-tls
Upvotes: 7