PHP Package: kriswallsmith/buzz

Buzz is a PHP library for HTTP client that provides a simple interface to send HTTP requests and handle responses efficiently.

Current Version: 1.3.0
Last Updated: 2024-09-23
PHP Requirement: ^7.1 || ^8.0
Dependencies:
symfony/polyfill-php72
php-fig/http-client
php-fig/http-message
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

Buzz is a lightweight and fast HTTP client library for PHP, designed to make sending HTTP requests and handling responses easy. It supports various features like asynchronous requests, streaming, and custom headers, making it suitable for various web development projects.

📦 Show all available classes🔗 View on GitHub

Download Latest Version: 1.3.0

Download Download v1.3.0

Code Integration Example

Make sure to include the correct namespace and class paths for proper usage.

<?php
// Example from PHPlibraries.com
require_once 'libs/kriswallsmith/buzz/1.3.0/loader.php';
require_once 'libs/symfony/polyfill-php72/{lib_version}/loader.php';
require_once 'libs/php-fig/http-client/1.0.3/loader.php';
require_once 'libs/php-fig/http-message/2.0/loader.php';

use Buzz\Client;
use Psr\Http\Message\RequestInterface;

$obj = new Client();
echo '✅ Test OK: ' . get_class($obj);
?>

We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.

Community Discussion

Ask questions, share tips, or report issues below.