Warning: Undefined array key "capability_type" in /home/hajeredu/public_html/wp-content/plugins/amcharts-charts-and-maps/includes/setup.php on line 16
Symfony 6.1.4 Installation – HajerEducation
symfony 6 app

Symfony 6.1.4 Installation

Symfony 6.1.4 Tutorial Part 1: Installation

In this tutorial, I will show you how to install and setup Symfony 6.1.4 on windows 10, I used xampp, composer, Symfony CLI

composer  -V
  • PHP version
php -v
  • Install Symfony CLI : open Windows PowerShell not cmd !!!
  • Install scoop
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser 
irm get.scoop.sh | iex
scoop install symfony-cli
  • Result
install symfony cli
  • Create Symfony Application
cd projects
composer create-project symfony/skeleton:"6.1.*" symfonyApp
cd  symfonyApp
composer require webapp
symfony server:start
symfony server start
  • Result
symfony 6 app
  • Open Symfony app on VS code
code .
VS code symfony App
chevron_left
chevron_right