-
-
Notifications
You must be signed in to change notification settings - Fork 5.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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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.3' | ||
$ 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 | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would add a
tip
directive before this paragraph so that there are two tips (one for the--prefer-dist
option and one for the-vvv
flag).There was a problem hiding this comment.
Choose a reason for hiding this comment
The 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 comment
The 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 :).