Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
src/ | 08-Jan-2025 | - | 2,307 | 1,337 | ||
tests/ | 08-Jan-2025 | - | 1,759 | 1,507 | ||
CHANGELOG.rst | D | 07-Jan-2025 | 3.8 KiB | 95 | 78 | |
LICENSE | D | 07-Jan-2025 | 1.1 KiB | 20 | 16 | |
Makefile | D | 07-Jan-2025 | 276 | 20 | 13 | |
README.rst | D | 07-Jan-2025 | 976 | 39 | 26 | |
composer.json | D | 07-Jan-2025 | 748 | 32 | 31 | |
phpunit.xml.dist | D | 07-Jan-2025 | 252 | 10 | 9 |
README.rst
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