0

I have installed symfony 3.2 in CentOS.

Then I tried:

symfony new contratos3.0

but this error is shown:

[GuzzleHttp\Ring\Exception\ConnectException]                                 
  cURL error 35: error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure    

How can I solve it?

jstuardo
  • 3,901
  • 14
  • 61
  • 136

1 Answers1

-1

I suspect you are on Mac OS and you need a different version of cURL. Try:

brew install curl
brew link curl --force

to get the one for Mac OS. See this reference: https://unix.stackexchange.com/questions/192944/how-to-fix-curl-sslv3-alert-handshake-failure

Community
  • 1
  • 1
Alvin Bunk
  • 7,621
  • 3
  • 29
  • 45