@@ -6,14 +6,14 @@ May and one in November (:doc:`see releases detail </contributing/community/rele
6
6
Testing the new Symfony versions in your projects as soon as possible is important
7
7
to ensure that they will keep working after upgrading to the new version.
8
8
9
- In this article you'll learn how to install and use new Symfony versions before
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
12
Creating a New Project Based on an Unstable Symfony Version
13
13
-----------------------------------------------------------
14
14
15
15
Suppose that Symfony 2.7 version hasn't been released yet and you want to create
16
- a new project to test its features. First, :doc: `install Composer </cookbook/composer >`
16
+ a new project to test its features. First, :doc: `install the Composer </cookbook/composer >`
17
17
package manager. Then, open a command console, enter your projects directory and
18
18
execute the following command:
19
19
@@ -57,7 +57,7 @@ command to update your project dependencies:
57
57
58
58
.. code-block :: bash
59
59
60
- $ composer update
60
+ $ composer update symfony/symfony
61
61
62
62
If you prefer to test a Symfony beta version, replace the ``"2.7.*@dev" `` constraint
63
63
by ``"2.7.0-beta1" `` to install a specific beta number or ``2.7.*@beta `` to get
@@ -74,9 +74,9 @@ the most recent beta version.
74
74
75
75
$ cd projects/my_project/
76
76
$ git checkout -b testing_new_symfony
77
- // ... update composer.json configuration
77
+ # ... update composer.json configuration
78
78
$ composer update
79
79
80
- // ... after testing the new Symfony version
80
+ # ... after testing the new Symfony version
81
81
$ git checkout master
82
82
$ git branch -D testing_new_symfony
0 commit comments