liopoos / booze
A simple HTTP library based on Guzzle
1.2.2
2025-01-13 08:36 UTC
Requires
- php: ^7.3
- ext-json: *
- ext-simplexml: *
- guzzlehttp/guzzle: ^7.0
- liopoos/http-code: ^1.0
Requires (Dev)
- phpunit/phpunit: ^9.6
This package is auto-updated.
Last update: 2025-06-13 09:37:59 UTC
README
A simple HTTP library based on Guzzle.
Installation
composer require liopoos/booze
Usage
class ApiClient extends Client { public function __construct($guzzleOptions = []) { $guzzleOptions = [ 'verify' => false ]; parent::__construct($guzzleOptions); } } $apiClient = new ApiClient(); $response = $apiClient->get("https://httpbin.org/get");
License
MIT