This communiqué originally appeared on Symfony Station. Welcome to this week's Symfony Station communiqué. It's your review of the essential news in the Symfony and PHP development communities focusing on protecting democracy. There's good content
2024-09-09825
Here come the first release of Small Swoole Symfony Http Client. This is a swoole-based Symfony HTTP client implementation that conforms to the Symfony HttpClientInterface for high-performance asynchronous HTTP requests. Swoole and OpenSwoole comp
2024-09-25882
Introduction In this post we are going to learn how to use supervisord to handle the execution of a symfony command. Basically, supervisord will allow us to: Autostart the command Autorestart the command Specify the number of processes we wan
2024-09-07830
Disclaimer: I'm not a divine entity. What I say is not an absolute truth. Don't be afraid to question even the world, because it might be wrong, not you. Today isn't a secret for nobody the importance of automated tests for keeping quality and integ
2024-09-12402
Why use a micro framework? On social media, often new PHP devs ask "What framework should I use for my project" and generally the answers given are "Laravel" or "Symfony". While these are both good options, the right
2024-09-14434
Si tu cherches à rendre ton code plus flexible et maintenable, le Design Pattern Factory est une excellente solution. Il te permet de déléguer la création d’objets à une méthode spécialisée, ce qui peut être super utile lorsque tu dois gérer différen
2024-09-09967
Introduction DTOs are simple objects that encapsulate data attributes without containing any business logic. They are often used to aggregate data from multiple sources into a single object, making it easier to manage and transmit. By using DTO
2024-09-21243
Parfois, tu as un morceau de code qui peut se comporter différemment selon la situation. Par exemple, tu peux avoir besoin de calculer un tarif différemment en fonction du type de client, ou appliquer un algorithme de tri spécifique. Au lieu d'enferm
2024-09-10758