Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork5.2k
Composer installation verbosity tip#4099
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -64,6 +64,10 @@ Distribution: | ||
To download the vendor files faster, add the ``--prefer-dist`` option at | ||
the end of any Composer command. | ||
Add the ``-vvv`` flag to see everything that Composer is doing - this is | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. I would add a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. +1 for moving this to a tip. Also, let's say something like "You can add the -vvv flag to the end of the command to see everything that Composer is doing. This is useful on a slow connection, where..." There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. Ah, basically - we have a really nicely-worded tip everywhere else - we can just use that wording here :). | ||
especially useful on a slow connection where it may seem that nothing is | ||
happening. | ||
This command may take several minutes to run as Composer downloads the Standard | ||
Distribution along with all of the vendor libraries that it needs. When it finishes, | ||
you should have a directory that looks something like this: | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -24,7 +24,13 @@ git repository: | ||
.. code-block:: bash | ||
$ php composer.phar create-project symfony/framework-standard-edition path/ '~2.5' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. We use the oldest still maintained Symfony version. So I don't think that this should be changed. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. Ah ok, sorry - I was bringing this in line with the changes i made in#4091 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. Yep, let's change this back :) | ||
.. tip:: | ||
Add the ``-vvv`` flag to see everything that Composer is doing - this is | ||
especially useful on a slow connection where it may seem that nothing is | ||
happening. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. You need to indent this with three more spaces so that it is rendered as part of the list item. | ||
Composer will now download the Standard Distribution along with all of the | ||
required vendor libraries. For more information about downloading Symfony using | ||