From 062058f8c54dcbf2deae1ab048e56dbcf4c3d8d5 Mon Sep 17 00:00:00 2001 From: Carlos Fernandes Date: Thu, 27 Nov 2025 18:28:50 -0300 Subject: [PATCH] Remove -dev version from setup.rst in symfony 8 Since version 8.0.0 has already been released, the -dev suffix can be removed from the version in the installation instructions. --- setup.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.rst b/setup.rst index ed15f0fa5d0..3d18a9b9388 100644 --- a/setup.rst +++ b/setup.rst @@ -48,10 +48,10 @@ application: .. code-block:: terminal # run this if you are building a traditional web application - $ symfony new my_project_directory --version="8.0.x-dev" --webapp + $ symfony new my_project_directory --version="8.0.x" --webapp # run this if you are building a microservice, console application or API - $ symfony new my_project_directory --version="8.0.x-dev" + $ symfony new my_project_directory --version="8.0.x" The only difference between these two commands is the number of packages installed by default. The ``--webapp`` option installs extra packages to give @@ -63,12 +63,12 @@ Symfony application using Composer: .. code-block:: terminal # run this if you are building a traditional web application - $ composer create-project symfony/skeleton:"8.0.x-dev" my_project_directory + $ composer create-project symfony/skeleton:"8.0.x" my_project_directory $ cd my_project_directory $ composer require webapp # run this if you are building a microservice, console application or API - $ composer create-project symfony/skeleton:"8.0.x-dev" my_project_directory + $ composer create-project symfony/skeleton:"8.0.x" my_project_directory No matter which command you run to create the Symfony application. All of them will create a new ``my_project_directory/`` directory, download some dependencies