Skip to content

Commit 6acb3e8

Browse files
feat(dev): add xdebug launch config
1 parent 73156fb commit 6acb3e8

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.vscode/launch.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
{
3+
// Use IntelliSense to learn about possible attributes.
4+
// Hover to view descriptions of existing attributes.
5+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
6+
"version": "0.2.0",
7+
"configurations": [
8+
{
9+
"name": "Listen for XDebug",
10+
"type": "php",
11+
"request": "launch",
12+
"port": 9000,
13+
"pathMappings": {
14+
"/hab/svc/php-runtime/var/site": "${workspaceRoot}"
15+
},
16+
"ignore": [
17+
"**/vendor/**/*.php",
18+
"**/src-compat/File.php"
19+
]
20+
}
21+
]
22+
}

0 commit comments

Comments
 (0)