adds xdebug

This commit is contained in:
soneill 2021-07-27 15:21:02 +12:00
parent 9cd459d897
commit fe7f3d4e62
4 changed files with 30 additions and 0 deletions

15
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,15 @@
{
"version": "0.2.0",
"configurations": [{
"name": "Listen for XDebug",
"type": "php",
"request": "launch",
"port": 9000,
"log": true,
"externalConsole": false,
"pathMappings": {
"/var/www/html/pathfinder": "${workspaceRoot}/pathfinder",
}
},
]
}