launch.json 516B

12345678910111213141516171819202122232425
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "Listen for XDebug",
  6. "type": "php",
  7. "request": "launch",
  8. "port": 9003,
  9. "xdebugSettings": {
  10. "max_children": 999,
  11. },
  12. "pathMappings": {
  13. "/shared/httpd/rielchyc/htdocs": "${workspaceFolder}/htdocs"
  14. }
  15. },
  16. {
  17. "name": "Launch currently open script",
  18. "type": "php",
  19. "request": "launch",
  20. "program": "${file}",
  21. "cwd": "${fileDirname}",
  22. "port": 9003
  23. }
  24. ]
  25. }