cara menjalankan proyek simfony
php bin/console server:run
kinjal suryavanshi
php bin/console server:run
symfony serve -d
# run this if you are building a traditional web application
composer create-project symfony/website-skeleton my_project_name
# run this if you are building a traditional web application
$ symfony new my_project_name --full
# run this if you are building a microservice, console application or API
$ symfony new my_project_name
php -S localhost:8000 -t public/
$ composer create-project symfony/website-skeleton:"^4.4" my_project_name