Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fixed composer create-project command (windows)
The composer create-project command as it was doesn't work on windows because of the single astrophes ' . The error returned is:

    Could not parse version constraint '2.5.*': Invalid version string "'2.5.*'"

This is resolved by switching to double astrophes ". The new command is verified to work on ubuntu linux as well.
  • Loading branch information
Epskampie committed Nov 21, 2014
commit 533bb146dbe76cbe62ceb7251f367f70dbae73f8
2 changes: 1 addition & 1 deletion cookbook/workflow/new_project_git.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ git repository:

.. code-block:: bash

$ php composer.phar create-project symfony/framework-standard-edition path/ '~2.5'
$ php composer.phar create-project symfony/framework-standard-edition path/ "~2.5"

.. tip::

Expand Down