The first alpha of API Platform 2.0 has been released! Take a look to this presentation to discover changes and new features of this version: These slides have been presented first in the sfPot conference of Paris (May 17, 2016).
Tag: PHP
DunglasActionBundle 0.3.0 released!
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…
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…