First Symfony Project, this repository contains a simple Symfony project that contains all of its PHP sources.
Create a new project using composer create-project symfony/skeleton.
And install composer require symfony/maker-bundle --dev and composer require orm to easily add entity files.
If you want to create a new Model: php bin/console make:entity
If you want to migrate and update the database: php bin/console make:migration and php bin/console doctrine:migrations:migrate.
Next:
$ symfony server:ca:install
$ symfony server:startAnd open https://localhost:8000/ in browser.