Description
Just like how vscode handle environment variables, can we enable pathMappings to support env variables as well?
Launch config would look something like this:
{
"version": "0.2.0",
"configurations": [
{
"name": "Listen for Xdebug",
"type": "php",
"request": "launch",
"port": 9003,
"pathMappings": {
"/var/www/${env:YOUR_ID}": "${workspaceFolder}/app"
},
"ignore": ["**/vendor/**/*.php"]
}
]
}