I have some custom application specific settings, I want to put in a configuration file. Where would I put these? I considered /config/autoload/global.php and/or local.php. But
You use your module.config.php
module.config.php
return array( 'foo' => array( 'bar' => 'baz' ) //all default ZF Stuff );
Inside your *Controller.php you'd call your settings via
*Controller.php
$config = $this->getServiceLocator()->get('config'); $config['foo'];
It's as simple as that :)