flow php

UNIFIED DATA PROCESSING FRAMEWORK

composer require flow-php/etl ~0.30.0

ChangelogRelease Cycle

play Try Flow Online

elephant
extract

Extracts

Read from various data sources.

arrow
transform

Transforms

Shape and optimize for your needs.

arrow
load

Loads

Store and secure in one of many available data sinks.


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

Contributors

Join us on GitHub external resource
scroll back to top