Added launch.json for debugging.

This commit is contained in:
danogentili 2016-07-16 00:00:55 +02:00
parent 0be0bf090f
commit 423f83ef7d

19
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,19 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Listen for XDebug",
"type": "php",
"request": "launch",
"port": 9000
},
{
"name": "Launch currently open script",
"type": "php",
"request": "launch",
"program": "${workspaceRoot}/testing.php",
"cwd": "${fileDirname}",
"port": 9000
}
]
}