We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 938054c commit cc50f69Copy full SHA for cc50f69
src/Resolver/Proxy.php
@@ -60,7 +60,7 @@ public function resolve($definition)
60
$client = new Client(null, [
61
'adapter' => Client\Adapter\Curl::class,
62
'curloptions' => [
63
- CURLOPT_SSL_VERIFYHOST => !$ignoreSSLErrors,
+ CURLOPT_SSL_VERIFYHOST => $ignoreSSLErrors ? 0 : 2,
64
CURLOPT_SSL_VERIFYPEER => !$ignoreSSLErrors,
65
],
66
]);
src/Resolver/Service.php
@@ -69,7 +69,7 @@ public function resolve($definition)
69
$client = new Client($url, [
70
71
72
73
74
75
0 commit comments