diff --git a/devilbox/cfg/.vscode/launch.json b/devilbox/cfg/.vscode/launch.json new file mode 100644 index 0000000..d0f8ef9 --- /dev/null +++ b/devilbox/cfg/.vscode/launch.json @@ -0,0 +1,28 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Listen for XDebug", + "type": "php", + "request": "launch", + "port": 9000, + "pathMappings": { + "/shared/httpd/yeesco-old": "${workspaceFolder}" + }, + "log": true, + "xdebugSettings": { + "max_children": 128, + "max_data": 512, + "max_depth": 3 + } + }, + { + "name": "Launch currently open script", + "type": "php", + "request": "launch", + "program": "${file}", + "cwd": "${fileDirname}", + "port": 9000 + } + ] + }