Symfony is an open-source PHP web application framework with MVC architecture. It is a set of reusable PHP components/libraries. It is basically designed for developers who need an elegant and simple toolkit to create web applications and is the most popular application frameworks among the open-source developer's community. It is used to build high-performance complex web applications.
Prerequisites:
Installation:
First Project: Here we will create a Hello World page in three steps.
- Step 1: Create a new file named "HelloController.php" in src/Controller/ folder and write the following code in that file.
- Step 2: Open config/routes.yaml file and write the following code in that file.
- Step 3: Goto localhost/project_1/public.
👁 Image
If you see something like this then you have successfully created hello world page.