Symfony / skeleton and symfony / website skeleton

At https://symfony.com/doc/current/setup.html you will be asked to run:

composer create-project symfony/website-skeleton my-project 

whereas in http://symfony.com/doc/current/quick_tour/the_big_picture.html you will be asked to run:

 composer create-project symfony/skeleton quick_tour 

I just did both. Using symfony / website-skeleton, I received an error message in the browser: No route found for "GET /"

With symfony / skeleton, I got the Welcome to Symfony 4.0.4 page.

What is the difference between them and why are you using one and not the other?

+5
source share
1 answer

New Symfony Edition (Symfony 4) Less . The core Symfony team decided not to provide Symfony Standard Edition for Symfony 4.0, which means that when you run composer create-project symfony/skeleton you download the minimum package to run the application, and you need to download the necessary packages, and you need to explicitly add all the dependencies that you want to depend on (twig, routing ...) look here for another package . But new visitors can be difficult, and the core Symfony team decided to provide a publication with the minimum standard Symfony features. You will get it using composer create-project symfony/website-skeleton . You have more explanation here.

+7
source

Source: https://habr.com/ru/post/1275020/


All Articles