Skip to content

Commit

Permalink
feature #3874 Updated the installation instructions for Symfony 2.5+ …
Browse files Browse the repository at this point in the history
…(javiereguiluz)

This PR was merged into the 2.5 branch.

Discussion
----------

Updated the installation instructions for Symfony 2.5+

| Q             | A
| ------------- | ---
| Doc fix?      | yes
| New docs?     | yes
| Applies to    | 2.5+
| Fixed tickets | #3748

Commits
-------

83bb723 Updated the installation instructions to Symfony 2.5+
  • Loading branch information
weaverryan committed Jun 4, 2014
2 parents 9a533ce + 83bb723 commit eadf281
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions quick_tour/the_big_picture.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ directory:

.. code-block:: bash
$ composer create-project symfony/framework-standard-edition myproject/ ~2.4
$ composer create-project symfony/framework-standard-edition myproject/ ~2.5
.. note::

Expand All @@ -35,9 +35,25 @@ directory:

Beware that the first time you install Symfony2, it may take a few minutes to
download all its components. At the end of the installation process, the
installer will ask you to provide some configuration options for the Symfony2
project. For this first project you can safely ignore this configuration by
pressing the ``<Enter>`` key repeatedly.
installer will ask you four questions:

1. **Would you like to use Symfony 3 directory structure? [y/N]** The upcoming
Symfony 3 version will modify the default directory structure for Symfony
applications. If you want to test drive this new structure, type ``y``.
In order to follow this tutorial, press the ``<Enter>`` key to accept the
default ``N`` value and to keep using the default Symfony2 structure.
2. **Would you like to install Acme demo bundle? [y/N]** Symfony versions prior
to 2.5 included a demo application to test drive some features of the
framework. However, as this demo application is only useful for newcomers,
installing it is now optional. In order to follow this tutorial, type the
``y`` key to install the demo application.
3. **Some parameters are missing. Please provide them.** Symfony2 asks you for
the value of all the configuration parameters. For this first project,
you can safely ignore this configuration by pressing the ``<Enter>`` key
repeatedly.
4. **Do you want to remove the existing VCS (.git, .svn..) history? [Y,n]?**
The development history of large projects such as Symfony can take a lot of
disk space. Press the ``<Enter>`` key to safely remove all this history data.

Running Symfony2
----------------
Expand Down

0 comments on commit eadf281

Please sign in to comment.