-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Update setup.rst #12933
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
Update setup.rst #12933
Conversation
Xavier, thanks for this contribution. Personally I'm not sure about this change because the version constraint is usually defined next to the dependency ... but let's wait for more opinions. |
Hi, I tried the command in the documentation but it wasn't work for me. |
@@ -251,7 +251,7 @@ create new projects. If you use Composer, you need to tell the exact version: | |||
|
|||
.. code-block:: terminal | |||
|
|||
$ composer create-project symfony/website-skeleton:^4.4 my_project_name |
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.
There is indeed a confusion with the require
argument syntax, could you please keep the minor version though?
I don't know what to do here: I've run these two commands and both worked perfectly:
I'm using macOS. I remember some issues in the past with Windows. @xlefebure maybe you were using Windows when running the command? |
@javiereguiluz Yes, I was on Windows 10 at this moment. |
Can you try if this command works for you? (note the quotes around the number version): composer create-project symfony/website-skeleton:"^4.4" my_project_name |
Hi,
It's working !
|
Thanks for confirming that the quotes make this problem disappear. We did that change while merging. Thanks! |
No description provided.