News Feed
Jobs Feed
Sections




News Archive
Joshua Thijssen:
Custom symfony2 config loader
January 30, 2013 @ 11:51:47

In his latest post Joshua Thjissen looks at the creation of a custom configuration loader for a Symfony2 application. This kind of thing is mostly useful for parsing configurations that Symfony2 doesn't already know how to parse.

It happens more and more: large projects where your symfony2 site is just a small part in the big picture. Lots of additional components might even play a bigger part, especially when you are dealing with asynchronous components which are connected through message queues for instance. [...] Our first idea is obvious: symfony2 uses by default a parameters.yml file, which gets imported by your configuration (config.yml) [...] So nothing new here and this setup works perfectly, provided that your symfony2 project is the ONLY thing that needs to be configured. As soon as you add multiple other components (like gearman or activemq workers that need to connect to solr too), they need to share this configuration.

His solution involves falling back to the INI-file format that's known as useful for several different languages and tools. Because of how Symfony2 reads these files though (only looking for "parameters") he's had to create a "ConfFileLoader" instance of the "FileLoader" that uses the parse_ini_file method to parse the data and return it back to the main container as parameters. He also includes the code/config you'll need to implement this custom loader into your application.

0 comments voice your opinion now!
custom loader symfony2 configuration file ini loader


blog comments powered by Disqus

Similar Posts

Wenbert Del Rosario's Blog: Registering your custom plugins in Zend Framework 1.8

Laknath Semage's Blog: PHP + Large files

Mark Karpeles' Blog: PHP DNS Daemon

Martynas Jusevicius' Blog: Reading Excel files with PHP

Robert Basic's Blog: Importing Symfony2 security settings from a bundle


Community Events











Don't see your event here?
Let us know!


development interview series application tool example code functional object release podcast testing community conference introduction zendframework2 language opinion unittest framework

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework