README.rst 976 B

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