Skip to content

Instantly share code, notes, and snippets.

@alexmanzo
Created March 5, 2021 15:47
Show Gist options
  • Save alexmanzo/e99d5d28f340fe4430733fe842595664 to your computer and use it in GitHub Desktop.
Save alexmanzo/e99d5d28f340fe4430733fe842595664 to your computer and use it in GitHub Desktop.
VSCode Xdebug Settings for Drupal
{
"version": "0.2.0",
"configurations": [
{
"name": "Listen for XDebug",
"type": "php",
"request": "launch",
"port": 9000,
"pathMappings": {
"/var/www/html": "${workspaceRoot}"
},
"xdebugSettings": {
"show_hidden": 1
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment