launch.json 224 B

12345678910111213
  1. {
  2. "configurations": [
  3. {
  4. "name": "Listen for XDebug",
  5. "type": "php",
  6. "request": "launch",
  7. "pathMappings": {
  8. "/var/www/html": "${workspaceFolder}"
  9. },
  10. "port": 9003,
  11. }
  12. ]
  13. }