PHPackages                             sanchescom/laravel-guzzle - 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. sanchescom/laravel-guzzle

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

sanchescom/laravel-guzzle
=========================

Guzzle facade for laravel.

0.1.0(6y ago)12.0kMITPHPPHP ~5.6|~7.0

Since Jul 18Pushed 6y agoCompare

[ Source](https://github.com/sanchescom/laravel-guzzle)[ Packagist](https://packagist.org/packages/sanchescom/laravel-guzzle)[ Docs](https://github.com/sanchescom/laravel-guzzle)[ RSS](/packages/sanchescom-laravel-guzzle/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (1)Dependencies (4)Versions (3)Used By (0)

Laravel guzzle
==============

[](#laravel-guzzle)

A Laravel facade for GuzzleHttp Client.

Installing
----------

[](#installing)

Require this package, with [Composer](https://getcomposer.org/), in the root directory of your project.

```
$ composer require sanchescom/laravel-guzzle
```

### Laravel 5.x:

[](#laravel-5x)

After updating composer, add the ServiceProvider to the providers array in `config/app.php`

```
'providers' => [
   ...
   Sanchescom\Guzzle\Providers\GuzzleServiceProvider::class,
],
```

### Lumen:

[](#lumen)

After updating composer add the following lines to register provider in `bootstrap/app.php`

```
$app->register(Sanchescom\Guzzle\Providers\GuzzleServiceProvider::class);
```

Usage
-----

[](#usage)

#### GET Status code

[](#get-status-code)

```
