Skip to content

Instantly share code, notes, and snippets.

@ultimike
Created October 28, 2023 14:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ultimike/f9bf6528687633c3bafa98f75049a9e9 to your computer and use it in GitHub Desktop.
Save ultimike/f9bf6528687633c3bafa98f75049a9e9 to your computer and use it in GitHub Desktop.
Visual Studio Code debug configuration
{
"version": "0.2.0",
"configurations": [
{
"name": "Listen for XDebug",
"type": "php",
"request": "launch",
"port": 9003,
"log": false,
"xdebugSettings": {
"show_hidden": 1,
// Increase the depth of variable inspection in the Debug Console.
"max_children": 512,
"max_data": 1024,
"max_depth": 4,
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment