In my Symfony 5.1 app, I am using several scoped http clients, defined in my framework.yaml:
framework:
http_client:
scoped_clients:
my_client:
....
example_client:
base_uri: 'https://example.com/...'
headers:
Accept: 'application/json'
Connection: 'keep-alive'
....
How can I configure symfony to use CurlHttpClient for "my_client" and NativeHttpClient for "example_client"?