if I want to automatically read a custom yml file i can use the following statement in apps/myapp/config/myappConfiguration.class.php
(sfApplicationConfiguration subclass).
require_once($this->getConfigCache()->checkConfig('config/mycustom.yml'));
However, I want the data to be available to the entire project. The equivalent file in config/ is a sfProjectConfiguration
subclass which doesn't have the getConfigCache()
method. What am i missing?