12345678910111213141516171819202122232425 |
- {
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Listen for XDebug",
- "type": "php",
- "request": "launch",
- "port": 9003,
- "xdebugSettings": {
- "max_children": 999,
- },
- "pathMappings": {
- "/shared/httpd/rielchyc/htdocs": "${workspaceFolder}/htdocs"
- }
- },
- {
- "name": "Launch currently open script",
- "type": "php",
- "request": "launch",
- "program": "${file}",
- "cwd": "${fileDirname}",
- "port": 9003
- }
- ]
- }
|