I'm refactoring some clients in a Symfony 4.3
project, to use Symfony http-client instead of Guzzle http-client. I'm stuck on a client that uses this option in its constructor:
'curl.options' => [CURLOPT_SSLVERSION => CURL_SSLVERSION_TLSv1_2]
I've been reading the docs of Symfony http/client but I can't find any mention of curl
options. Does someone know something about how to set this option?
I'm configuring headers and other important options in framework.yaml
for each client.