Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
> ```

<div data-full-width="false">

<figure><img src=".gitbook/assets/recipes.png" alt="Flex recipes"></figure>
Expand Down