Configurations
Your application configuration files are located in ./config
directory, every configuration file are represented by a simple PHP script which has to return array.
How configuration files works
Poirot relies on Modular design and each module can consist of specific configurations that default values could be overrided based on project.
All of the configuration files for the Project skeleton are stored in the config
directory.
Take a look for routes
for instance it's defined on HttpFoundation Module and overrided here on project skeleton.
To make overriding config feature available should use load method from Config package. like this block of code from HttpFoundation
Accessing Configuration Values
You may easily access your configuration values using the global config
helper function from anywhere in your application. config will return null if key/value not exists.
Last updated
Was this helpful?