1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-02-23 17:44:02 +01:00
guzzle/docs/index.rst

72 lines
1.7 KiB
ReStructuredText
Raw Normal View History

2013-10-31 15:25:29 -07:00
.. title:: Guzzle | PHP HTTP client and framework for consuming RESTful web services
2014-02-13 20:05:40 -08:00
======
Guzzle
======
Guzzle is a PHP HTTP client that makes it easy to work with HTTP/1.1 and takes
the pain out of consuming web services.
2014-02-13 20:05:40 -08:00
- Pluggable HTTP adapters that can send requests serially or in parallel
- Doesn't require cURL, but uses cURL by default
- Streams data for both uploads and downloads
- Provides event hooks & plugins for cookies, caching, logging, OAuth, mocks, etc...
- Keep-Alive & connection pooling
- SSL Verification
- Automatic decompression of response bodies
- Streaming multipart file uploads
- Connection timeouts
2014-02-13 20:05:40 -08:00
.. code-block:: php
$client = new GuzzleHttp\Client();
$response = $client->get('http://guzzlephp.org');
2014-02-14 18:58:36 -08:00
$res = $client->get('https://api.github.com/user', ['auth' => ['user', 'pass']]);
echo $res->statusCode();
// 200
echo $res->getHeader('content-type');
// 'application/json; charset=utf8'
echo $res->getBody();
// {"type":"User"...'
var_export($res->json());
// Outputs the JSON decoded data
2014-02-13 20:05:40 -08:00
User guide
----------
.. toctree::
:maxdepth: 2
overview
quickstart
clients
requests
events
2014-02-13 20:05:40 -08:00
streams
faq
Libraries
---------
There are a number of libraries that can be used on top of or alongside
Guzzle. Here is a list of components that makeup Guzzle itself, official
libraries provided by the Guzzle organization, and commonly used libraries
provided by third party developers.
.. toctree::
:maxdepth: 2
libraries/components
libraries/guzzle
libraries/guzzle-service
libraries/third-party
API Documentation
-----------------
2013-10-31 15:25:29 -07:00
.. toctree::
2014-02-13 20:05:40 -08:00
:maxdepth: 2
2013-10-31 15:25:29 -07:00
2014-02-13 20:05:40 -08:00
api
migrating-to-4