scratch – Blame information for rev 87

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