MadelineProto/.vscode/launch.json

19 lines
453 B
JSON
Raw Normal View History

2016-07-16 00:00:55 +02:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Listen for XDebug",
"type": "php",
"request": "launch",
"port": 9002
2016-07-16 00:00:55 +02:00
},
{
"name": "Launch currently open script",
"type": "php",
"request": "launch",
"program": "${workspaceRoot}/testing.php",
"cwd": "${fileDirname}",
"port": 9000
}
]
}