laravel 5 GuzzleHttp客户端https cURL错误35

I am using the GuzzleHttp in laravel 5. was to be connected to https://my-site.com/xxxx/, but it does not lead well.

$client = new Client();

$urlTabinfo = 'https://my-site.com/api/xxxxx/';
$option['login'] = array('id'=>'aaa','pass'=>'xxxx');

$response = $client->post(
                     $urlTabinfo,
                     array('body' => $option));

When you post, an exception is raised.

Message is as follows.

cURL error 35: See http://curl.haxx.se/libcurl/c/libcurl-errors.html

You're running on FreeBSD, /usr/local/share/certs/ca-root-nss.crt there a.

In addition, I ran the following curl command on the OS. The result is as follows.

% Curl -k -vvv https://my-site.com
  :
  :
curl: (35) error: 14077458: SSL routines: SSL23_GET_SERVER_HELLO: reason (1112)

% Curl -k -3 -vvv https://my-site.com
  :

   : * SSLv3, TLS alert, Client hello (1)

Something, and I feel that needs to be set, but do not know well.

It can be seen better, please let me know.