DunglasActionBundle is an alternative controller system for the Symfony framework relying on autowiring and inspirited by the ADR pattern. Thanks to this bundle, controllers, commands and event listeners are automatically detected and registered as services. All their dependencies are also automatically registered. See the GitHub repository for an extensive documentation. A lot of work have been done…
Category: Symfony
DunglasActionBundle: Symfony controllers, redesigned
Today is my birthday, but – unusually – I offer the gift: DunglasActionBundle – a replacement for the Symfony controller subsystem. Since few months, a lot of discussions and experimentations are occurring in the Symfony world to find a better and moderner way to create controllers. During the past summer, I’ve already switched the API Platform project from the traditional controller system to a…
Making the Symfony PropertyAccess Component 84% faster in 2.8… and counting
Update 12/06/15: I’ve opened a PR making the PropertyAccess Component 84% faster than before. It implements strategies explained at the end of this post. This PropertyAccess component allows to access to a property of an object (or a to a key of an array) regardless of the access strategy that must be used. It is smart enough to access…