From e8c2a0e87c421dcca4c86f49d3d01492a8f99d49 Mon Sep 17 00:00:00 2001 From: stlgaits Date: Tue, 20 Jan 2026 10:47:25 +0100 Subject: [PATCH] docs(install): update install instructions with Symfony 8 projects --- docs/getting-started.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index 46ffb123..fe1a7f3f 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -14,7 +14,7 @@ You can set up the Sylius Stack on existing Symfony projects, but in the case yo composer create-project symfony/skeleton my_project # Or with Symfony CLI: -symfony new --docker --php 8.4 my_project +symfony new --docker --php 8.5 my_project ```` ### Install the package using Composer and Symfony Flex @@ -31,6 +31,21 @@ composer require -W \ sylius/ui-translations ``` +> The Sylius Stack now supports Symfony 8 ! As some packages remain in alpha, if you are starting a Symfony 8 project, +> run the following command instead to ensure all dependencies are resolved correctly: +> +> ```bash +> composer require -W \ +> doctrine/orm \ +> doctrine/doctrine-bundle \ +> pagerfanta/doctrine-orm-adapter \ +> symfony/asset-mapper \ +> sylius/bootstrap-admin-ui \ +> sylius/ui-translations \ +> sylius/resource-bundle "^1.14@alpha" \ +> sylius/grid-bundle "^1.15@alpha" +> ``` +
Flex recipes