Created
June 23, 2020 14:09
-
-
Save uxweb/4976a609073778fc4128342b5526fc3d to your computer and use it in GitHub Desktop.
VScode Xdebug Settings
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
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Listen for XDebug", | |
"type": "php", | |
"request": "launch", | |
"port": 9001, | |
"log": true, | |
"xdebugSettings": { | |
"max_data": 65536, | |
"show_hidden": 1, | |
"max_children": 100, | |
"max_depth": 3 | |
} | |
}, | |
{ | |
"name": "Listen for XDebug on Docker", | |
"type": "php", | |
"request": "launch", | |
"port": 9000, | |
"log": true, | |
"externalConsole": false, | |
"pathMappings": { | |
"/var/www/html/web": "${workspaceFolder}/web" | |
}, | |
"ignore": ["**/vendor/**/*.php"], | |
"xdebugSettings": { | |
"max_data": 65536, | |
"show_hidden": 1, | |
"max_children": 100, | |
"max_depth": 3 | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment