kidol/curl

There is no license information available for the latest version (dev-master) of this package.

Object orientated wrapper for the PHP cURL extension.

Installs: 1

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/kidol/curl

dev-master 2015-06-17 13:07 UTC

This package is not auto-updated.

Last update: 2025-12-24 16:16:17 UTC


README

Object orientated wrapper for the PHP cURL extension.

Links

Small usage example

$response = (new CurlRequest())->send([
    'url' => 'http://example.com/',
	'connectTimeout' => 10,
	'userAgent' => 'curl',
]);

echo $response->content;