launch.json 871 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "Launch built-in server and debug",
  6. "type": "php",
  7. "request": "launch",
  8. "runtimeArgs": [
  9. "-S",
  10. "localhost:8000",
  11. "-t",
  12. "."
  13. ],
  14. "port": 9003,
  15. "serverReadyAction": {
  16. "action": "openExternally"
  17. }
  18. },
  19. {
  20. "name": "Debug current script in console",
  21. "type": "php",
  22. "request": "launch",
  23. "program": "${file}",
  24. "cwd": "${fileDirname}",
  25. "externalConsole": false,
  26. "port": 9003
  27. },
  28. {
  29. "name": "Listen for Xdebug",
  30. "type": "php",
  31. "request": "launch",
  32. "port": 9003
  33. }
  34. ]
  35. }