1- How to Install and Use an Unstable Symfony Version
2- ==================================================
3-
4- Symfony releases two new minor versions (2.5, 2.6, 2.7, etc.) per year, one in
5- May and one in November (:doc: `see releases detail </contributing/community/releases >`).
6- Testing the new Symfony versions in your projects as soon as possible is important
7- to ensure that they will keep working after upgrading to the new version.
1+ How to Install or Upgrade to the Latest, Unreleased Symfony Version
2+ ===================================================================
83
94In this article, you'll learn how to install and use new Symfony versions before
105they are released as stable versions.
@@ -14,7 +9,7 @@ Creating a New Project Based on an Unstable Symfony Version
149
1510Suppose that Symfony 2.7 version hasn't been released yet and you want to create
1611a new project to test its features. First,:doc: `install the Composer </cookbook/composer >`
17- package manager. Then, open a command console, enter yourprojects directory and
12+ package manager. Then, open a command console, enter yourproject's directory and
1813execute the following command:
1914
2015..code-block ::bash
@@ -35,9 +30,8 @@ option:
3530 Upgrading your Project to an Unstable Symfony Version
3631-----------------------------------------------------
3732
38- Instead of creating a new empty project, in this section you'll update an existing
39- Symfony application to an unstable framework version. Suppose again that Symfony
40- 2.7 version hasn't been released yet and you want to test it in your project.
33+ Suppose again that Symfony 2.7 hasn't been released yet and you want to upgrade
34+ an existing application to test that your project works with it.
4135
4236First, open the ``composer.json `` file located in the root directory of your
4337project. Then, edit the value of the version defined for the ``symfony/symfony ``
@@ -52,8 +46,8 @@ dependency as follows:
5246 }
5347 }
5448
55- Then , open a command console, enter your project directory and execute the following
56- command to update your project dependencies:
49+ Finally , open a command console, enter your project directory and execute the
50+ following command to update your project dependencies:
5751
5852..code-block ::bash
5953