2017 © Pedro Peláez
 

library guzzle

Guzzle is a PHP HTTP client library

image

guzzlehttp/guzzle

Guzzle is a PHP HTTP client library

  • Saturday, July 28, 2018
  • by jeremeamia
  • Repository
  • 498 Watchers
  • 13337 Stars
  • 76,258,714 Installations
  • PHP
  • 10413 Dependents
  • 274 Suggesters
  • 1774 Forks
  • 230 Open issues
  • 100 Versions
  • 10 % Grown

The README.md

Guzzle, (*1)

Guzzle, PHP HTTP client

Latest Version Build Status Total Downloads, (*2)

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

  • 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.
  • Supports PSR-18 allowing interoperability between other PSR-18 HTTP Clients.
  • 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();
$response = $client->request('GET', 'https://api.github.com/repos/guzzle/guzzle');

echo $response->getStatusCode(); // 200
echo $response->getHeaderLine('content-type'); // 'application/json; charset=utf8'
echo $response->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

We use GitHub issues only to discuss bugs and new features. For support please refer to:, (*4)

Installing Guzzle

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

composer require guzzlehttp/guzzle

Version Guidance

Version Status Packagist Namespace Repo Docs PSR-7 PHP Version
3.x EOL guzzle/guzzle Guzzle v3 v3 No >=5.3.3,<7.0
4.x EOL guzzlehttp/guzzle GuzzleHttp v4 N/A No >=5.4,<7.0
5.x EOL guzzlehttp/guzzle GuzzleHttp v5 v5 No >=5.4,<7.4
6.x Security fixes guzzlehttp/guzzle GuzzleHttp v6 v6 Yes >=5.5,<8.0
7.x Latest guzzlehttp/guzzle GuzzleHttp v7 v7 Yes >=7.2.5,<8.3

Security

If you discover a security vulnerability within this package, please send an email to security@tidelift.com. All security vulnerabilities will be promptly addressed. Please do not disclose security-related issues publicly until a fix has been announced. Please see Security Policy for more information., (*6)

License

Guzzle is made available under the MIT License (MIT). Please see License File for more information., (*7)

For Enterprise

Available as part of the Tidelift Subscription, (*8)

The maintainers of Guzzle and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. Learn more., (*9)

The Versions

28/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

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

08/02 2012

v2.2.0

2.2.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

 

framework rest http web service

29/01 2012

v2.1.4

2.1.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