Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 25-Apr-2016 | - | ||||
docs/ | H | 03-May-2022 | - | 5,485 | 4,120 | |
phing/ | H | 18-Mar-2015 | - | 1,072 | 782 | |
src/Guzzle/ | H | 18-Mar-2015 | - | 29,349 | 17,608 | |
CHANGELOG.md | H A D | 18-Mar-2015 | 47.2 KiB | 752 | 649 | |
LICENSE | H A D | 18-Mar-2015 | 1.1 KiB | 20 | 16 | |
README.md | H A D | 18-Mar-2015 | 2.5 KiB | 58 | 43 | |
UPGRADING.md | H A D | 18-Mar-2015 | 21 KiB | 538 | 425 | |
build.xml | H A D | 18-Mar-2015 | 1.7 KiB | 46 | 34 | |
phar-stub.php | H A D | 18-Mar-2015 | 593 | 17 | 12 |
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