README.rst 1.1 KB

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