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.
2 parents 15deee9 + cfc9990 commit f90c8e4Copy full SHA for f90c8e4
src/Config.php
@@ -118,7 +118,9 @@ public function getSoapOptions(): array
118
'ID_Application' => $this->appId,
119
'soap_version' => SOAP_1_2,
120
'encoding' => 'utf-8',
121
- 'ssl_method' => SOAP_SSL_METHOD_TLS,
+ 'stream_context' => stream_context_create([
122
+ 'ssl' => ['crypto_method' => STREAM_CRYPTO_METHOD_TLSv1_2_CLIENT]
123
+ ]),
124
'exceptions' => true,
125
'trace' => true,
126
'user_agent' => 'Skautis PHP library',
0 commit comments