Class to manage cURL requests to make easier building API clients in PHP.

v1.1 2025-09-10 07:38 UTC

This package is not auto-updated.

Last update: 2025-09-11 05:48:18 UTC


README

Description

Class to manage cURL requests to make easier building API clients in PHP.

Install

Install with composer:

composer require iwalkalone/curl

Or a specific version:

composer require iwalkalone/curl ^1.0

How to use it

$curl = new \iwalkalone\cURL("https://example.org/api/some/call");
$curl->request([
    'param1' => 'value1',
    'param2' => 'value2',
], 'get');