Last active
January 11, 2023 22:29
-
-
Save afragen/0e322c8d05d4e3dc0906982005233fc3 to your computer and use it in GitHub Desktop.
Stuff for xDebug 3.x and Local
This file contains 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
// Launch | |
"launch": { | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Listen for Xdebug 3.x", | |
"type": "php", | |
"request": "launch", | |
"port": 9003, | |
"xdebugSettings": { | |
"max_children": 128, | |
"max_data": 1024, | |
"max_depth": 3, | |
"show_hidden": 1 | |
} | |
}, | |
{ | |
"name": "Listen for xDebug 2.x", | |
"type": "php", | |
"request": "launch", | |
"port": 9000, | |
"pathMappings": { | |
"": "${workspaceFolder}" | |
}, | |
"xdebugSettings": { | |
"max_children": 128, | |
"max_depth": 3, | |
"max_data": 1024, | |
"show_hidden": 1, | |
} | |
}, | |
{ | |
"name": "Listen for xDebug 2.x ('wp' subdir)", | |
"type": "php", | |
"request": "launch", | |
"port": 9000, | |
"pathMappings": { | |
"": "${workspaceFolder}/wp" | |
}, | |
"xdebugSettings": { | |
"max_children": 128, | |
"max_depth": 3, | |
"max_data": 1024, | |
"show_hidden": 1, | |
} | |
}, | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment