38 lines
1.1 KiB
JSON
38 lines
1.1 KiB
JSON
{
|
|
// Verwendet IntelliSense zum Ermitteln möglicher Attribute.
|
|
// Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen.
|
|
// Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Launch built-in server and debug",
|
|
"type": "php",
|
|
"request": "launch",
|
|
"runtimeArgs": [
|
|
"-S",
|
|
"localhost:8000",
|
|
"-t",
|
|
"."
|
|
],
|
|
"port": 9003,
|
|
"serverReadyAction": {
|
|
"action": "openExternally"
|
|
}
|
|
},
|
|
{
|
|
"name": "Debug current script in console",
|
|
"type": "php",
|
|
"request": "launch",
|
|
"program": "${file}",
|
|
"cwd": "${fileDirname}",
|
|
"externalConsole": false,
|
|
"port": 9003
|
|
},
|
|
{
|
|
"name": "Listen for Xdebug",
|
|
"type": "php",
|
|
"request": "launch",
|
|
"port": 9003
|
|
}
|
|
]
|
|
} |