I would like to be able to use nested parameters defined in one configuration file in another for examle
# config/config.yaml (my custom configuration file)
database:
driver: pdo_mysql
host: localhost
user: dev
password: dev
dbname: dev
To be used in another configuration file
# config/packages/doctrine.yaml
url: 'mysql://%database.user%:%database.password%@%database.host%:%database.port%/%database.dbname%'
This currently does not work as I am not sure how to reference the variables in the Config package (https://symfony.com/doc/current/configuration.html)