PHPackages                             grom/buzy - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [HTTP &amp; Networking](/categories/http)
4. /
5. grom/buzy

AbandonedArchivedLibrary[HTTP &amp; Networking](/categories/http)

grom/buzy
=========

Web client on top of Symfony2 HTTP foundation

v0.0.2(13y ago)122765PHP

Since May 1Pushed 13y ago1 watchersCompare

[ Source](https://github.com/GromNaN/Buzy)[ Packagist](https://packagist.org/packages/grom/buzy)[ RSS](/packages/grom-buzy/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (4)Versions (4)Used By (0)

Buzy is an HTTP client for PHP built on top of Symfony2 components
==================================================================

[](#buzy-is-an-http-client-for-php-built-on-top-of-symfony2-components)

This is a work in progress project. The goal is to build an efficient and robust library on top of Symfony2 HttpFoundation (Request and Response).

Unit tested with PHPUnit [![Build Status](https://camo.githubusercontent.com/18e153e5778be78e09638abe1e4399d911a770bc8060ee9ada2b5ec462a0ef00/68747470733a2f2f7365637572652e7472617669732d63692e6f72672f47726f6d4e614e2f42757a792e706e673f6272616e63683d6d6173746572)](http://travis-ci.org/GromNaN/Buzy)

Todo:

- HTTP cache listener to skip not necessary requests.
- CURL client
- Proxy support
- History listener
- Logger listener

Requirements
------------

[](#requirements)

- PHP 5.3 +
- Symfony HttpFoundation
- Symfony EventDispatcher
- Symfony BrowserKit (for CookieJar)
- Curl Extension (not yet)

Usage
-----

[](#usage)

```
$browser = new Buzy\Browser();
$response = $browser->get('http://www.google.com');

echo $response;
```

You can also use the low-level HTTP classes directly.

```
$request = Symfony\Component\HttpFoundation\Request::create('http://google.com', 'GET');
$response = new Symfony\Component\HttpFoundation\Response();

$client = new Buzy\Client\FileGetContents();
$client->send($request, $response);

echo $request;
echo $response;
```

Simple reverse proxy
--------------------

[](#simple-reverse-proxy)

With this 5 lines of code, you can re-send a request and transfert the response.

```
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Buzy\Browser;

$request = Request::createFromGlobals();
$request->server->set('HTTP_HOST', 'internal-server');

$browser = new Browser();

$response = $browser->send($request);

$response->send();

// The response is sent back to the client
```

Licence
-------

[](#licence)

Original code base is extracted from Buzz library written by Kris Wallsmith.

This library is shared under MIT licence. See LICENCE file.

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity21

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 77.8% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~18 days

Total

2

Last Release

5107d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/400034?v=4)[Jérôme Tamarelle](/maintainers/GromNaN)[@GromNaN](https://github.com/GromNaN)

---

Top Contributors

[![GromNaN](https://avatars.githubusercontent.com/u/400034?v=4)](https://github.com/GromNaN "GromNaN (21 commits)")[![ludofleury](https://avatars.githubusercontent.com/u/187038?v=4)](https://github.com/ludofleury "ludofleury (3 commits)")[![igorw](https://avatars.githubusercontent.com/u/88061?v=4)](https://github.com/igorw "igorw (2 commits)")[![gyndav](https://avatars.githubusercontent.com/u/61255?v=4)](https://github.com/gyndav "gyndav (1 commits)")

### Embed Badge

![Health badge](/badges/grom-buzy/health.svg)

```
[![Health](https://phpackages.com/badges/grom-buzy/health.svg)](https://phpackages.com/packages/grom-buzy)
```

###  Alternatives

[symfony/http-kernel

Provides a structured process for converting a Request into a Response

8.1k822.4M6.8k](/packages/symfony-http-kernel)[nelmio/api-doc-bundle

Generates documentation for your REST API from attributes

2.3k63.6M233](/packages/nelmio-api-doc-bundle)[api-platform/core

Build a fully-featured hypermedia or GraphQL API in minutes!

2.6k48.1M236](/packages/api-platform-core)[friendsofsymfony/http-cache-bundle

Set path based HTTP cache headers and send invalidation requests to your HTTP cache

43813.2M47](/packages/friendsofsymfony-http-cache-bundle)[illuminate/http

The Illuminate Http package.

11936.0M5.1k](/packages/illuminate-http)[api-platform/http-cache

API Platform HttpCache component

223.2M7](/packages/api-platform-http-cache)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
