Files
php/.vscode/launch.json

27 lines
676 B
JSON
Raw Permalink Normal View History

2019-05-01 07:53:21 -07:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch application",
"type": "php",
"request": "launch",
2019-05-01 20:32:57 +00:00
"program": "${workspaceFolder}/index.php",
2019-05-01 07:53:21 -07:00
"cwd": "${workspaceFolder}",
"port": 9000
2019-08-22 23:55:39 +00:00
},
{
"name": "Listen for XDebug",
"type": "php",
"request": "launch",
"port": 9000
},
{
"name": "Launch currently open script",
"type": "php",
"request": "launch",
"program": "${file}",
"cwd": "${fileDirname}",
"port": 9000
2019-05-01 07:53:21 -07:00
}
]
}