Everyone on our team has added the word “symfony” to their autocorrect dictionaries – its actually part of our onboarding process. We’ve been building applications with Symfony since 1.0 and we plan on using it for the foreseeable future. In our experience, Symfony provides a perfect balance between a modern MVC framework, accessibility of development, and interoperability with other PHP code. Because of this, Symfony is our platform of choice for custom web applications, especially those with complicated, domain specific business logic. – Keep Reading

Latest Symfony Posts

  • Symfony2: Creating optgroups with an Entity type
  • Last week, I was working on a Symfony2 app where I wanted to generate optgroup tags inside the select box of an Entity form type. After poking around, I ran across a StackOverflow answer explaining how to do it. Basically, it turns out what you have to do is manually return a “choices” array from… Continue reading →...

  • Symfony2 and Impersonating Users, a Heads Up
  • Recently I was working on a project in which it admins were able to impersonate other users.  It’s a fairly easy task to add to Symfony2, merely adding a switch_user reference to your firewall can make it possible, consult the Symfony docs for more on that.  One thing I noticed was that every now and… Continue reading →...