From 471bfd7746fb4319bb06c9b8032b4e09d0803bc9 Mon Sep 17 00:00:00 2001 From: Christian Wolf Date: Mon, 5 Sep 2022 16:30:20 +0200 Subject: [PATCH] Create basic configuration for PHP debugging --- .vscode/launch.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..eadd3fe --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,18 @@ +{ + // 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": 9000, + "pathMappings": { + "/var/www/html": "${workspaceRoot:joomla}", + "/var/www/html/templates": "${workspaceRoot:template}" + } + } + ] +}