Category: Symfony framework

  • Understanding Symfony Events: A Deep Dive

    Symfony’s event system is a powerful and flexible feature that forms the backbone of many Symfony applications. It allows developers to hook into various points of the application lifecycle, enabling the creation of modular, extensible, and maintainable code. In this comprehensive guide, we’ll dive deep into how Symfony events work, exploring their intricacies and showcasing…

  • Building a Full-Stack Web Application with Symfony API Platform and React

    Step 1: Setting up the Symfony Backend with API Platform We’ll start by setting up a new Symfony project with API Platform to create our backend API. Install Symfony and API Platform Use Composer to create a new Symfony project with API Platform: composer create-project symfony/skeleton:"^6.2" my-api cd my-api composer require api Configure the Database…