README.rst 902 B

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