Skip to content

Commit

Permalink
Create launch.json
Browse files Browse the repository at this point in the history
  • Loading branch information
jonatanaxe authored Jan 5, 2023
1 parent e66aef8 commit 84a22d4
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions devilbox/cfg/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -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
}
]
}

0 comments on commit 84a22d4

Please sign in to comment.