Last active
September 12, 2024 00:36
-
-
Save ultimike/f9bf6528687633c3bafa98f75049a9e9 to your computer and use it in GitHub Desktop.
Visual Studio Code debug configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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