Skip to content

Commit

Permalink
Updated install instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamCampbell committed Oct 9, 2014
1 parent 27c4cc3 commit 3e8743b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -44,7 +44,7 @@ existing composer.json file:
{
"require": {
"guzzlehttp/guzzle": "~5"
"guzzlehttp/guzzle": "~5.0"
}
}
Expand All @@ -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"
}
}
Expand Down

0 comments on commit 3e8743b

Please sign in to comment.