1
- How to Install and Use an Inestable Symfony Version
2
- ===================================================
1
+ How to Install and Use an Unstable Symfony Version
2
+ ==================================================
3
3
4
4
Symfony releases two new minor versions (2.5, 2.6, 2.7, etc.) per year, one in
5
5
May and one in November (:doc:`see releases detail <contributing/community/releases>`).
@@ -9,8 +9,8 @@ to ensure that they will keep working as expected.
9
9
In this article you'll learn how to install and use new Symfony versions before
10
10
they are released as stable versions.
11
11
12
- Creating a New Project Based on an Inestable Symfony Version
13
- ------------------------------------------------------------
12
+ Creating a New Project Based on an Unstable Symfony Version
13
+ -----------------------------------------------------------
14
14
15
15
Suppose that Symfony 2.7 version hasn't been released yet and you want to create
16
16
a new project to test its features. First, :doc:`install Composer </cookbook/composer>`
@@ -32,11 +32,11 @@ option:
32
32
33
33
$ composer create-project symfony/framework-standard-edition my_project "2.7.*" --stability=beta
34
34
35
- Upgrading your Project to an Inestable Symfony Version
36
- ------------------------------------------------------
35
+ Upgrading your Project to an Unstable Symfony Version
36
+ -----------------------------------------------------
37
37
38
38
Instead of creating a new empty project, in this section you'll update an existing
39
- Symfony application to an inestable framework version. Suppose again that Symfony
39
+ Symfony application to an unstable framework version. Suppose again that Symfony
40
40
2.7 version hasn't been released yet and you want to test it in your project.
41
41
42
42
First, open the ``composer.json`` file located in the root directory of your
@@ -53,7 +53,7 @@ dependency:
53
53
}
54
54
55
55
Then, before updating your dependencies, make sure that the project configuration
56
- allows to install inestable versions. If the ``composer.json`` file contains a
56
+ allows to install unstable versions. If the ``composer.json`` file contains a
57
57
``minimum-stability`` option, change its value to ``dev``. If that option doesn't
58
58
exist, add it as follows:
59
59
0 commit comments