Skip to content

Instantly share code, notes, and snippets.

@localpath
Created August 8, 2024 17:02
Show Gist options
  • Save localpath/49c3ffffc741e5dcfd5ef31f6670de6e to your computer and use it in GitHub Desktop.
Save localpath/49c3ffffc741e5dcfd5ef31f6670de6e to your computer and use it in GitHub Desktop.
VS Code XDebug Config
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Listen for Xdebug",
"type": "php",
"request": "launch",
"port": 9003,
"pathMappings": {
"/var/www/giving": "${workspaceFolder}"
},
"hostname": "localhost"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment