Skip to content

Commit f8d69d4

Browse files
dannykoppingweaverryan
authored andcommitted
Added Composer installation tip
1 parent 3da0776 commit f8d69d4

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

book/installation.rst

+4
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,10 @@ Distribution:
6666
To download the vendor files faster, add the ``--prefer-dist`` option at
6767
the end of any Composer command.
6868

69+
Add the ``-vvv`` flag to see everything that Composer is doing - this is
70+
especially useful on a slow connection where it may seem that nothing is
71+
happening.
72+
6973
This command may take several minutes to run as Composer downloads the Standard
7074
Distribution along with all of the vendor libraries that it needs. When it finishes,
7175
you should have a directory that looks something like this:

cookbook/workflow/new_project_git.rst

+7-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,13 @@ git repository:
2626

2727
.. code-block:: bash
2828
29-
$ php composer.phar create-project symfony/framework-standard-edition path/ '~2.3'
29+
$ php composer.phar create-project symfony/framework-standard-edition path/ '~2.5'
30+
31+
.. tip::
32+
33+
Add the ``-vvv`` flag to see everything that Composer is doing - this is
34+
especially useful on a slow connection where it may seem that nothing is
35+
happening.
3036

3137
Composer will now download the Standard Distribution along with all of the
3238
required vendor libraries. For more information about downloading Symfony using

quick_tour/the_big_picture.rst

+6
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ directory:
2222
2323
$ composer create-project symfony/framework-standard-edition myproject/ '~2.3'
2424
25+
.. tip::
26+
27+
Add the ``-vvv`` flag to see everything that Composer is doing - this is
28+
especially useful on a slow connection where it may seem that nothing is
29+
happening.
30+
2531
.. note::
2632

2733
`Composer`_ is the package manager used by modern PHP applications and the

0 commit comments

Comments
 (0)