caipin b0d376d83b 更新代码 9 年之前
..
docs b0d376d83b 更新代码 9 年之前
phing b0d376d83b 更新代码 9 年之前
src b0d376d83b 更新代码 9 年之前
tests b0d376d83b 更新代码 9 年之前
.gitignore b0d376d83b 更新代码 9 年之前
.travis.yml b0d376d83b 更新代码 9 年之前
CHANGELOG.md b0d376d83b 更新代码 9 年之前
LICENSE b0d376d83b 更新代码 9 年之前
README.md b0d376d83b 更新代码 9 年之前
UPGRADING.md b0d376d83b 更新代码 9 年之前
build.xml b0d376d83b 更新代码 9 年之前
composer.json b0d376d83b 更新代码 9 年之前
phar-stub.php b0d376d83b 更新代码 9 年之前
phpunit.xml.dist b0d376d83b 更新代码 9 年之前

README.md

Guzzle, PHP HTTP client and webservice framework

Composer Downloads Build Status

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

  • Extremely powerful API provides all the power of cURL with a simple interface.
  • Truly take advantage of HTTP/1.1 with persistent connections, connection pooling, and parallel requests.
  • Service description DSL allows you build awesome web service clients faster.
  • Symfony2 event-based plugin system allows you to completely modify the behavior of a request.

Get answers with: Documentation, Forums, IRC (#guzzlephp @ irc.freenode.net)

Installing via Composer

The recommended way to install Guzzle is through Composer.

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

# Add Guzzle as a dependency
php composer.phar require guzzle/guzzle:~3.9

After installing, you need to require Composer's autoloader:

require 'vendor/autoload.php';

This is an older version

This repository is for Guzzle 3.x. Guzzle 4.0, the new version of Guzzle has been released and is available at https://github.com/guzzle/guzzle.