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.
dev-master
2015-06-17 13:07 UTC
Requires
- php: >=5.4.0
- ext-curl: *
Requires (Dev)
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;