2017-25 © Pedro Peláez
 

library guzzle

Guzzle is a PHP HTTP client library

image

ciatog/guzzle

Guzzle is a PHP HTTP client library

  • Tuesday, July 17, 2018
  • by ciatog
  • Repository
  • 1 Watchers
  • 0 Stars
  • 37 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1771 Forks
  • 0 Open issues
  • 100 Versions
  • 0 % Grown

The README.md

Guzzle, PHP HTTP client

Latest Version Build Status Total Downloads, (*1)

Guzzle is a PHP HTTP client that makes it easy to send HTTP requests and trivial to integrate with web services., (*2)

  • Simple interface for building query strings, POST requests, streaming large uploads, streaming large downloads, using HTTP cookies, uploading JSON data, etc...
  • Can send both synchronous and asynchronous requests using the same interface.
  • Uses PSR-7 interfaces for requests, responses, and streams. This allows you to utilize other PSR-7 compatible libraries with Guzzle.
  • Abstracts away the underlying HTTP transport, allowing you to write environment and transport agnostic code; i.e., no hard dependency on cURL, PHP streams, sockets, or non-blocking event loops.
  • Middleware system allows you to augment and compose client behavior.
$client = new \GuzzleHttp\Client();
$res = $client->request('GET', 'https://api.github.com/repos/guzzle/guzzle');
echo $res->getStatusCode();
// 200
echo $res->getHeaderLine('content-type');
// 'application/json; charset=utf8'
echo $res->getBody();
// '{"id": 1420053, "name": "guzzle", ...}'

// Send an asynchronous request.
$request = new \GuzzleHttp\Psr7\Request('GET', 'http://httpbin.org');
$promise = $client->sendAsync($request)->then(function ($response) {
    echo 'I completed! ' . $response->getBody();
});
$promise->wait();

Help and docs

Installing Guzzle

The recommended way to install Guzzle is through Composer., (*3)

# Install Composer
curl -sS https://getcomposer.org/installer | php

Next, run the Composer command to install the latest stable version of Guzzle:, (*4)

php composer.phar require guzzlehttp/guzzle

After installing, you need to require Composer's autoloader:, (*5)

require 'vendor/autoload.php';

You can then later update Guzzle using composer:, (*6)

bash composer.phar update, (*7)

Version Guidance

Version Status Packagist Namespace Repo Docs PSR-7 PHP Version
3.x EOL guzzle/guzzle Guzzle v3 v3 No >= 5.3.3
4.x EOL guzzlehttp/guzzle GuzzleHttp v4 N/A No >= 5.4
5.x Maintained guzzlehttp/guzzle GuzzleHttp v5 v5 No >= 5.4
6.x Latest guzzlehttp/guzzle GuzzleHttp v6 v6 Yes >= 5.5

The Versions

17/07 2018

dev-master

9999999-dev http://guzzlephp.org/

Guzzle is a PHP HTTP client library

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

17/07 2018

dev-php72fix

dev-php72fix http://guzzlephp.org/

Guzzle is a PHP HTTP client library

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

17/07 2018

6.2.4

6.2.4.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

20/06 2018

5.3.x-dev

5.3.9999999.9999999-dev http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

22/04 2018

6.3.3

6.3.3.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

26/03 2018

6.3.2

6.3.2.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

26/03 2018

6.3.1

6.3.1.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

15/01 2018

5.3.2

5.3.2.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

22/06 2017

6.3.0

6.3.0.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

28/02 2017

6.2.3

6.2.3.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

23/02 2017

4.x-dev

4.9999999.9999999.9999999-dev http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

08/10 2016

6.2.2

6.2.2.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

15/07 2016

5.3.1

5.3.1.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

15/07 2016

4.2.4

4.2.4.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

15/07 2016

6.2.1

6.2.1.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

21/03 2016

6.2.0

6.2.0.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

23/11 2015

6.1.1

6.1.1.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

08/09 2015

6.1.0

6.1.0.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

04/07 2015

6.0.2

6.0.2.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

27/05 2015

6.0.1

6.0.1.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

26/05 2015

6.0.0

6.0.0.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

20/05 2015

5.3.0

5.3.0.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

28/01 2015

5.2.0

5.2.0.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

19/12 2014

5.1.0

5.1.0.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

04/11 2014

5.0.3

5.0.3.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

31/10 2014

5.0.2

5.0.2.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

16/10 2014

5.0.1

5.0.1.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

13/10 2014

5.0.0

5.0.0.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

05/10 2014

4.2.3

4.2.3.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

09/09 2014

4.2.2

4.2.2.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

20/08 2014

4.2.1

4.2.1.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

18/08 2014

4.2.0

4.2.0.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

14/08 2014

4.1.8

4.1.8.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

08/08 2014

4.1.7

4.1.7.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

03/08 2014

4.1.6

4.1.6.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

03/08 2014

4.1.5

4.1.5.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

23/07 2014

4.1.4

4.1.4.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

16/07 2014

4.1.3

4.1.3.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

18/06 2014

4.1.2

4.1.2.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

08/06 2014

4.1.1

4.1.1.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

28/05 2014

4.1.0

4.1.0.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

16/04 2014

4.0.2

4.0.2.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

04/04 2014

4.0.1

4.0.1.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

30/03 2014

4.0.0

4.0.0.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

25/03 2014

4.0.0-rc.2

4.0.0.0-RC2 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

16/03 2014

4.0.0-rc.1

4.0.0.0-RC1 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

28/01 2014

v3.8.1

3.8.1.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

06/12 2013

v3.8.0

3.8.0.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

02/10 2013

v3.7.4

3.7.4.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

08/09 2013

v3.7.3

3.7.3.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

02/08 2013

v3.7.2

3.7.2.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

05/07 2013

v3.7.1

3.7.1.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

11/06 2013

v3.7.0

3.7.0.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

30/05 2013

v3.6.0

3.6.0.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

13/05 2013

v3.5.0

3.5.0.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

30/04 2013

v3.4.3

3.4.3.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

30/04 2013

v3.4.2

3.4.2.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

16/04 2013

v3.4.1

3.4.1.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

12/04 2013

v3.4.0

3.4.0.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

11/03 2013

v3.3.1

3.3.1.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

04/03 2013

v3.3.0

3.3.0.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

15/02 2013

v3.2.0

3.2.0.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

28/01 2013

v3.1.2

3.1.2.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

21/01 2013

v3.1.1

3.1.1.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

14/01 2013

v3.1.0

3.1.0.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

20/12 2012

v3.0.7

3.0.7.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

10/12 2012

v3.0.6

3.0.6.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

19/11 2012

v3.0.5

3.0.5.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

12/11 2012

v3.0.4

3.0.4.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

04/11 2012

v3.0.3

3.0.3.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

25/10 2012

v3.0.2

3.0.2.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

22/10 2012

v3.0.1

3.0.1.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

16/10 2012

v3.0.0

3.0.0.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

16/10 2012

v2.8.8

2.8.8.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

30/09 2012

v2.8.7

2.8.7.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

06/09 2012

v2.8.6

2.8.6.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

29/08 2012

v2.8.5

2.8.5.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

15/08 2012

v2.8.4

2.8.4.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

30/07 2012

v2.8.3

2.8.3.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

24/07 2012

v2.8.2

2.8.2.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

16/07 2012

v2.8.1

2.8.1.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

16/07 2012
02/07 2012

v2.7.2

2.7.2.0 http://guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service http client

27/06 2012

v2.7.1

2.7.1.0 http://www.guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service

25/06 2012

v2.7.0

2.7.0.0 http://www.guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http client web service

10/06 2012

v2.6.6

2.6.6.0 http://www.guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http web service

04/06 2012

v2.6.5

2.6.5.0 http://www.guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http web service

31/05 2012

v2.6.4

2.6.4.0 http://www.guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http web service

23/05 2012

v2.6.3

2.6.3.0 http://www.guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http web service

20/05 2012

v2.6.2

2.6.2.0 http://www.guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http web service

19/05 2012

v2.6.1

2.6.1.0 http://www.guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http web service

15/05 2012

v2.6.0

2.6.0.0 http://www.guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http web service

08/05 2012

v2.5.0

2.5.0.0 http://www.guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http web service

24/04 2012

v2.4.1

2.4.1.0 http://www.guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http web service

22/04 2012

v2.4.0

2.4.0.0 http://www.guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http web service

17/04 2012

v2.3.2

2.3.2.0 http://www.guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

The Development Requires

curl framework rest http web service

03/04 2012

v2.2.4

2.2.4.0 http://www.guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

framework rest http web service

20/03 2012

v2.2.3

2.2.3.0 http://www.guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

framework rest http web service

17/02 2012

v2.2.2

2.2.2.0 http://www.guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

framework rest http web service

14/02 2012

v2.2.1

2.2.1.0 http://www.guzzlephp.org/

Guzzle is a PHP HTTP client library and framework for building RESTful web service clients

  Sources   Download

MIT

The Requires

 

framework rest http web service