Skip to content

Instantly share code, notes, and snippets.

@tuto1902
Last active April 8, 2025 10:33
Show Gist options
  • Save tuto1902/bf06f1a110f4e6de694cc87edfec9dde to your computer and use it in GitHub Desktop.
Save tuto1902/bf06f1a110f4e6de694cc87edfec9dde to your computer and use it in GitHub Desktop.
VSCode Debugger Launch Configuration
{
"version": "0.2.0",
"configurations": [
{
"name": "Listen for Xdebug",
"type": "php",
"request": "launch",
"log": false,
"externalConsole": false,
"pathMappings": {
"/var/www/html": "${workspaceFolder}"
},
"ignore": [
"**/vendor/**/*.php"
],
"port": 9003
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment