Installing a Symfony beta version with the Symfony binary
Published on 2023-10-28 • Modified on 2023-10-28
This snippet shows how to install a Symfony beta version with the Symfony binary. Note that if a new major version is released, it will install the beta of the previous LTS version. For example, currently, Symfony 7.0-beta1 is out, but this command installs Symfony 6.4-beta1. If you want to update to the new Symfony major version, check out this snippet.
symfony new my_project_directory --version=next
More on Stackoverflow Read the doc Random snippet