From the course: Exploring and Selecting PHP Frameworks
Unlock the full course today
Join today to access over 24,800 courses taught by industry experts.
Symfony
From the course: Exploring and Selecting PHP Frameworks
Symfony
I really like Symfony. It's a little more building block-oriented than some of the other frameworks, but each block is really, really nice. Symfony is a little more corporate. That's not a bad thing. There are plenty of projects built on Symfony running at scale. And further, Symfony updates are well-documented. I have a course called Symfony 6 Essential Training. If you like this video, that's a good next step to get further into the world of Symfony. As a reminder, this course uses Codespaces. If you have an available instance, use that instead of starting a second one. The code for this video is in 0302_b and ends at 0302_e. First, I'll install, composer create-project does the work. And I'll use symfony/skeleton. I'm going to pass it a version and I'll put it in a new Symfony folder. Of note, this is a skeleton installation. This means it's a fully functional install of Symfony, but missing the template rendering. So perfect for console applications, APIs, or microservices. To get…