You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For APP_ENV=prod configuration loader must first search configs in app/config/prod. If config does not exists then it should take it from default folder app/config.
In this case, files will be loaded from folders:
APP_ENV=prod
app/config/prod/queue.php
app/config/prod/cache.php
app/config/monolog.php
app/config/database.php
APP_ENV=dev
app/config/dev/database.php
app/config/cache.php
app/config/monolog.php
APP_ENV=*
app/config/database.php
app/config/cache.php
app/config/monolog.php
The text was updated successfully, but these errors were encountered:
Description
It would be very useful to be able to load configuration files based on APP_ENV from corresponding folder. Like in a Symfony
Example
Imagine that we have such a file structure
For
APP_ENV=prod
configuration loader must first search configs inapp/config/prod
. If config does not exists then it should take it from default folderapp/config
.In this case, files will be loaded from folders:
APP_ENV=prod
APP_ENV=dev
APP_ENV=*
The text was updated successfully, but these errors were encountered: