Reputation: 3
I would like to know that how can I install the Sulu with Symfony 4. I'm following the document here and run the command
composer create-project sulu/sulu-minimal sulu -n
So I got the Sulu mininal (v1.6.25) installed with the Symfony v3.4.23.
Upvotes: 0
Views: 419
Reputation: 1755
The current version of Sulu uses Symfony 3.4. According to this blog post and the changelog they updated to Symfony 4 in the 2.0.0-alpha4 version. If you need it for the production then don't use it. For development purposes you can install the newest alpha version with the following command:
composer create-project sulu/sulu-minimal sulu "2.0.0-alpha5" -n
Upvotes: 2