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
+ ===================================================================
8
3
9
4
In this article, you'll learn how to install and use new Symfony versions before
10
5
they are released as stable versions.
@@ -14,7 +9,7 @@ Creating a New Project Based on an Unstable Symfony Version
14
9
15
10
Suppose that Symfony 2.7 version hasn't been released yet and you want to create
16
11
a new project to test its features. First, :doc: `install the Composer </cookbook/composer >`
17
- package manager. Then, open a command console, enter your projects directory and
12
+ package manager. Then, open a command console, enter your project's directory and
18
13
execute the following command:
19
14
20
15
.. code-block :: bash
@@ -35,9 +30,8 @@ option:
35
30
Upgrading your Project to an Unstable Symfony Version
36
31
-----------------------------------------------------
37
32
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.
41
35
42
36
First, open the ``composer.json `` file located in the root directory of your
43
37
project. Then, edit the value of the version defined for the ``symfony/symfony ``
@@ -52,8 +46,8 @@ dependency as follows:
52
46
}
53
47
}
54
48
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:
57
51
58
52
.. code-block :: bash
59
53
0 commit comments