• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..25-Apr-2016-

docs/H03-May-2022-5,4854,120

phing/H18-Mar-2015-1,072782

src/Guzzle/H18-Mar-2015-29,34917,608

CHANGELOG.mdH A D18-Mar-201547.2 KiB752649

LICENSEH A D18-Mar-20151.1 KiB2016

README.mdH A D18-Mar-20152.5 KiB5843

UPGRADING.mdH A D18-Mar-201521 KiB538425

build.xmlH A D18-Mar-20151.7 KiB4634

phar-stub.phpH A D18-Mar-2015593 1712

README.md

1Guzzle, PHP HTTP client and webservice framework
2================================================
3
4# This is an old version of Guzzle
5
6This repository is for Guzzle 3.x. Guzzle 5.x, the new version of Guzzle, has
7been released and is available at
8[https://github.com/guzzle/guzzle](https://github.com/guzzle/guzzle). The
9documentation for Guzzle version 5+ can be found at
10[http://guzzlephp.org](http://guzzlephp.org).
11
12Guzzle 3 is only maintained for bug and security fixes. Guzzle 3 will be EOL
13at some point in late 2015.
14
15### About Guzzle 3
16
17[![Composer Downloads](https://poser.pugx.org/guzzle/guzzle/d/total.png)](https://packagist.org/packages/guzzle/guzzle)
18 [![Build Status](https://secure.travis-ci.org/guzzle/guzzle3.png?branch=master)](http://travis-ci.org/guzzle/guzzle3)
19
20- Extremely powerful API provides all the power of cURL with a simple interface.
21- Truly take advantage of HTTP/1.1 with persistent connections, connection pooling, and parallel requests.
22- Service description DSL allows you build awesome web service clients faster.
23- Symfony2 event-based plugin system allows you to completely modify the behavior of a request.
24
25Get answers with: [Documentation](http://guzzle3.readthedocs.org/en/latest/), [Forums](https://groups.google.com/forum/?hl=en#!forum/guzzle), IRC ([#guzzlephp](irc://irc.freenode.net/#guzzlephp) @ irc.freenode.net)
26
27### Installing via Composer
28
29The recommended way to install Guzzle is through [Composer](http://getcomposer.org).
30
31```bash
32# Install Composer
33curl -sS https://getcomposer.org/installer | php
34
35# Add Guzzle as a dependency
36php composer.phar require guzzle/guzzle:~3.9
37```
38
39After installing, you need to require Composer's autoloader:
40
41```php
42require 'vendor/autoload.php';
43```
44## Known Issues
45
461. Problem following a specific redirect: https://github.com/guzzle/guzzle/issues/385.
47   This has been fixed in Guzzle 4/5.
482. Root XML attributes not serialized in a service description: https://github.com/guzzle/guzzle3/issues/5.
49   This has been fixed in Guzzle 4/5.
503. Accept-Encoding not preserved when following redirect: https://github.com/guzzle/guzzle3/issues/9
51   Fixed in Guzzle 4/5.
524. String "Array" Transmitted w/ PostFiles and Duplicate Aggregator: https://github.com/guzzle/guzzle3/issues/10
53   Fixed in Guzzle 4/5.
545. Recursive model references with array items: https://github.com/guzzle/guzzle3/issues/13
55   Fixed in Guzzle 4/5
566. String "Array" Transmitted w/ PostFiles and Duplicate Aggregator: https://github.com/guzzle/guzzle3/issues/10
57   Fixed in Guzzle 4/5.
58