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.

Maintainers

Package info

github.com/kidol/curl

Homepage

pkg:composer/kidol/curl

Statistics

Installs: 1

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

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

This package is not auto-updated.

Last update: 2026-04-01 17:38:54 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;