Skip to content

Commit 215e638

Browse files
committed
minor #15761 How to Install or Upgrade to the Latest, Unreleased Symfony Version (StaffNowa)
This PR was merged into the 6.0 branch. Discussion ---------- How to Install or Upgrade to the Latest, Unreleased Symfony Version Upgrade docs https://symfony.com/doc/6.0/setup/unstable_versions.html Commits ------- da9d99e * unstable_versions.rst - upgrade
2 parents dd3863a + da9d99e commit 215e638

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

setup/unstable_versions.rst

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ they are released as stable versions.
77
Creating a New Project Based on an Unstable Symfony Version
88
-----------------------------------------------------------
99

10-
11-
Suppose that the Symfony 5.4 version hasn't been released yet and you want to create
10+
Suppose that the Symfony 6.0 version hasn't been released yet and you want to create
1211
a new project to test its features. First, `install the Composer package manager`_.
1312
Then, open a command console, enter your project's directory and
1413
run the following command:
@@ -24,7 +23,7 @@ in the ``my_project/`` directory.
2423
Upgrading your Project to an Unstable Symfony Version
2524
-----------------------------------------------------
2625

27-
Suppose again that Symfony 5.4 hasn't been released yet and you want to upgrade
26+
Suppose again that Symfony 6.0 hasn't been released yet and you want to upgrade
2827
an existing application to test that your project works with it.
2928

3029
First, open the ``composer.json`` file located in the root directory of your
@@ -35,16 +34,16 @@ new version and change your ``minimum-stability`` to ``beta``:
3534
3635
{
3736
"require": {
38-
+ "symfony/framework-bundle": "^5.4",
39-
+ "symfony/finder": "^5.4",
37+
+ "symfony/framework-bundle": "^6.0",
38+
+ "symfony/finder": "^6.0",
4039
"...": "..."
4140
},
4241
+ "minimum-stability": "beta"
4342
}
4443
4544
You can also use set ``minimum-stability`` to ``dev``, or omit this line
4645
entirely, and opt into your stability on each package by using constraints
47-
like ``5.4.*@beta``.
46+
like ``6.0.*@beta``.
4847

4948
Finally, from a terminal, update your project's dependencies:
5049

0 commit comments

Comments
 (0)