launch.json 307 B

1234567891011121314151617
  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}"
  10. },
  11. "port": 9001,
  12. "xdebugSettings": {
  13. "idekey": "VSCODE"
  14. }
  15. }
  16. ]
  17. }