liopoos/booze

基于Guzzle的简单HTTP库

1.2.0 2023-12-16 05:29 UTC

This package is auto-updated.

Last update: 2024-09-16 07:06:31 UTC


README

基于Guzzle的简单HTTP库。

用法

class ApiClient extends Client
{
    public function __construct($guzzleOptions = [])
    {
        $guzzleOptions = [
            'verify' => false
        ];

        parent::__construct($guzzleOptions);
    }
}


$apiClient = new ApiClient();

$response = $apiClient->get("https://httpbin.org/get");