launch.json 249 B

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