How is it possible to provide global information (paths, DB passwords, Timezone, ...) in a PHP Application? I know, that global variables are unsafe, but how do common CMS handle this problem? I already looked at Wordpress, but WP isn't famous for it's high security standards.
I've read a little bit about Dependency Injection, but is this the common way to handle this?
All in all I want to provide a type of global (but controlled*) information.
*Is it possible to control the provided data in a way that only authorized objects get the required information?