Skip to content
This repository was archived by the owner on Jan 25, 2022. It is now read-only.

Commit 33a051b

Browse files
author
Daryl Lozupone
committed
Add Visual Studio Code Xdebug configuration
1 parent fa0c280 commit 33a051b

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.vscode/launch.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Listen for XDebug",
6+
"type": "php",
7+
"request": "launch",
8+
"port": 9000,
9+
"localSourceRoot": "${workspaceRoot}/www",
10+
"serverSourceRoot": "/var/www"
11+
},
12+
{
13+
"name": "Launch currently open script",
14+
"type": "php",
15+
"request": "launch",
16+
"program": "${file}",
17+
"cwd": "${fileDirname}",
18+
"port": 9000
19+
}
20+
]
21+
}

0 commit comments

Comments
 (0)