This repository has been archived on 2023-12-29. You can view files and clone it, but cannot push or open issues or pull requests.
dogstats/.vscode/launch.json

22 lines
559 B
JSON
Raw Permalink Normal View History

2023-10-29 15:58:16 +01:00
{
"version": "0.2.0",
"configurations": [
{
2023-10-30 08:57:18 +01:00
"name": "Xdebug server",
2023-10-29 15:58:16 +01:00
"type": "php",
"request": "launch",
"runtimeArgs": [
"-S",
"localhost:8080",
"-t",
"web"
],
"port": 5902,
"serverReadyAction": {
2023-10-29 19:52:08 +01:00
"action": "openExternally",
"pattern": "listening on http://localhost:([0-9]+)",
"uriFormat": "http://localhost:%s",
2023-10-29 15:58:16 +01:00
},
}
]
}