Replies: 1 comment 2 replies
-
This seems reasonable, however, better to use 'http' => [
'verify' => false,
], And add backward compatibility check in case $this->client = new Client(array_merge([ 'http_errors' => false ], $config['http'] ?? [])); You are free to make pull request |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello! I suggest adding the following:
$this->client = new Client([ 'http_errors' => false ] + $config['http']['config']);
This way we will get rid of the error: cURL error 60: SSL certificate problem: self-signed certificate in certificate chain
Thanks.
Beta Was this translation helpful? Give feedback.
All reactions