Test a Symfony BETA minor version
Published on 2019-05-11 • Modified on 2024-05-02
Symfony 7.1 beta1 is out as of the 2024-05-02, you can test it by modifying your composer.json
file.
The following JSON snippet shows you the parts that you must change in your file.
You also have to change the "~7.0.0"
requirement to "~7.1.0"
like below with the symfony/http-kernel
dependency.
You can also put "*" but you will get a warning when running composer validate
.
Then run composer update
.
Note that this upgrade should be avoided for a production project.
Don't forget to report issues you may find on GitHub
Testing beta versions is very important and is one of the easiest way to contribute to Symfony. 🙂
[2024-05-02] Update for Symfony 7.1 beta1.
{
"minimum-stability": "beta",
"require": {
"symfony/http-kernel": "~7.1.0",
},
"extra": {
"symfony": {
"require": "7.1.*",
}
}
}
More on Stackoverflow Read the doc More on the web Random snippet