Skip to content

Instantly share code, notes, and snippets.

@ultimike
Last active September 12, 2024 00:36
Show Gist options
  • 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