Matt
Web Developer
- Messages
- 245
- Reaction score
- 215
- Points
- 828
Symfony 4 - Introduction and Installation
Note: This is not an official guide to install Symfony. I do not hold any licenses or rights towards Symfony. I am not affiliated with Fabien and/or the Symfony trade-mark in any way shape or form; I thought this would be helpful to be shared here . (Pls don't sue me <3 )
Note: To install Symfony 4 you need to make sure you're able to run Symfony 7.1+ and have access to Composer.
1) Open up your command line
1.1) Using Composer type the following command
*PATHNAME being where you want your project to be installed, starting from \User\.
2) Now write the following command in to your command line:
This will run your Symfony project using PHP's inbuilt web server.
And that's it! Symfony installed in two-simple steps. There is much more to Symfony than what meets the eye, with Symfony4 just being released 30/11/17 I can't wait for what people manage to create!
If you want more in-depth and professional/certified tutorials please check out KNP University, their resources are amazing for web-development.
Note: This is not an official guide to install Symfony. I do not hold any licenses or rights towards Symfony. I am not affiliated with Fabien and/or the Symfony trade-mark in any way shape or form; I thought this would be helpful to be shared here . (Pls don't sue me <3 )
Note: To install Symfony 4 you need to make sure you're able to run Symfony 7.1+ and have access to Composer.
1) Open up your command line
1.1) Using Composer type the following command
Code:
composer create-project symfony/skeleton [*PATHNAME]
2) Now write the following command in to your command line:
Code:
cd [*PATHNAME]
php bin/console server:run
And that's it! Symfony installed in two-simple steps. There is much more to Symfony than what meets the eye, with Symfony4 just being released 30/11/17 I can't wait for what people manage to create!
If you want more in-depth and professional/certified tutorials please check out KNP University, their resources are amazing for web-development.