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
- Install Xampp
- Install Composer
- Add Path /Php Environment Variable
- Composer version
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
- Install Symfony CLI
scoop install symfony-cli
- Result
- Create Symfony Application
cd projects
composer create-project symfony/skeleton:"6.1.*" symfonyApp
cd symfonyApp
composer require webapp
symfony server:start
- Result
- Open Symfony app on VS code
code .