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