.env ``` REDIS_HOST=localhost LOCK_DSN=redis://${REDIS_HOST} ``` .env.local ``` REDIS_HOST=aaa ``` ### What happens now Dotenv in standard symfony configuration will evaluate `LOCK_DSN` as `redis://localhost` ### What is expected to happen Dotenv should merge all files first and do variable expansion after that. Expected result would be `redis://aaa`