Definition
/**
* Create curl transport options for OTLP.
*
* Returns a CurlTransportOptions builder for configuring curl transport settings
* using a fluent interface.
*
* Example usage:
* ```php
* $options = otlp_curl_options()
* ->withTimeout(60)
* ->withConnectTimeout(15)
* ->withHeader('Authorization', 'Bearer token')
* ->withCompression()
* ->withSslVerification(verifyPeer: true);
*
* $transport = otlp_curl_transport($endpoint, $serializer, $options);
* ```
*/
otlp_curl_options() : CurlTransportOptions