Skip to content

Commit

Permalink
adding launch.json for vscode xdebug
Browse files Browse the repository at this point in the history
  • Loading branch information
123andy committed Oct 25, 2024
1 parent 9566980 commit 2abf845
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
// 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 RDC Xdebug",
"type": "php",
"request": "launch",
"port": 9003,
"pathMappings": {
"/var/www/html/": "${workspaceRoot}/www/"
}
}
]
}

0 comments on commit 2abf845

Please sign in to comment.