PHPackages                             sirsquall/buzz - 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. sirsquall/buzz

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

sirsquall/buzz
==============

Laravel Lightweight HTTP client

v0.12(11y ago)72.5kMITPHPPHP &gt;=5.3.0

Since Nov 11Pushed 11y ago1 watchersCompare

[ Source](https://github.com/sirsquall/Buzz)[ Packagist](https://packagist.org/packages/sirsquall/buzz)[ Docs](https://github.com/kriswallsmith/Buzz)[ RSS](/packages/sirsquall-buzz/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (1)Versions (12)Used By (0)

Forked from :

Laravel : Buzz is a lightweight PHP 5.3 library for issuing HTTP requests.

### Installing via Composer

[](#installing-via-composer)

Update your project's composer.json file to include Buzz:

```
{
    "require": {
        "sirsquall/buzz": "v0.12"
    }
}
```

Run the Composer update comand

```
$ composer update

```

In your `config/app.php` add `'Buzz\BuzzServiceProvider'` to the end of the `$providers` array

```
'providers' => array(

    'Illuminate\Foundation\Providers\ArtisanServiceProvider',
    'Illuminate\Auth\AuthServiceProvider',
    ...
    'Buzz\BuzzServiceProvider',

),

```

At the end of `config/app.php` add `'Buzz'    => 'Buzz\Buzz'` to the `$aliases` array

```
'aliases' => array(

    'App'        => 'Illuminate\Support\Facades\App',
    'Artisan'    => 'Illuminate\Support\Facades\Artisan',
    ...
   'Buzz'            => 'Buzz\Buzz',

),

```

To override the default configuration options you can publish the config file.

```
php artisan config:publish sirsquall/buzz

```

You may now edit these options at app/config/packages/sirsquall/buzz/config.php.

```
