kidol / curl
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
Requires
- php: >=5.4.0
- ext-curl: *
Requires (Dev)
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;