1==============
2Guzzle Streams
3==============
4
5**Note:** this is a fork of the original project since it was abandoned.
6
7Provides a simple abstraction over streams of data.
8
9This library is used in `Guzzle 5 <https://github.com/guzzle/guzzle>`_, and is
10(currently) compatible with the WIP PSR-7.
11
12Installation
13============
14
15This package can be installed easily using `Composer <http://getcomposer.org>`_.
16Simply add the following to the composer.json file at the root of your project:
17
18.. code-block:: javascript
19
20    {
21      "require": {
22        "guzzlehttp/streams": "~3.0"
23      }
24    }
25
26Then install your dependencies using ``composer.phar install``.
27
28Documentation
29=============
30
31The documentation for this package can be found on the main Guzzle website at
32http://docs.guzzlephp.org/en/guzzle4/streams.html.
33
34Testing
35=======
36
37This library is tested using PHPUnit. You'll need to install the dependencies
38using `Composer <http://getcomposer.org>`_ then run ``make test``.
39