1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-01-18 05:48:15 +01:00

Updated install instructions

This commit is contained in:
Graham Campbell 2014-10-09 21:14:09 +01:00
parent 27c4cc3cc4
commit 3e8743bfb6

View File

@ -35,7 +35,7 @@ You can add Guzzle as a dependency using the composer.phar CLI:
.. code-block:: bash
php composer.phar require guzzlehttp/guzzle:~5
php composer.phar require guzzlehttp/guzzle:~5.0
Alternatively, you can specify Guzzle as a dependency in your project's
existing composer.json file:
@ -44,7 +44,7 @@ existing composer.json file:
{
"require": {
"guzzlehttp/guzzle": "~5"
"guzzlehttp/guzzle": "~5.0"
}
}
@ -61,13 +61,13 @@ Bleeding edge
-------------
During your development, you can keep up with the latest changes on the master
branch by setting the version requirement for Guzzle to ``dev-master``.
branch by setting the version requirement for Guzzle to ``~5.0@dev``.
.. code-block:: js
{
"require": {
"guzzlehttp/guzzle": "dev-master"
"guzzlehttp/guzzle": "~5.0@dev"
}
}