~jacekn/wordpress/wp-plugin-swift-storage-v2

« back to all changes in this revision

Viewing changes to vendor/guzzlehttp/streams/README.rst

  • Committer: Jacek Nykis
  • Date: 2015-02-11 15:35:31 UTC
  • Revision ID: jacek.nykis@canonical.com-20150211153531-hmy6zi0ov2qfkl0b
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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``.