Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. // Use IntelliSense to learn about possible attributes.
  3. // Hover to view descriptions of existing attributes.
  4. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": "Listen for XDebug",
  9. "type": "php",
  10. "request": "launch",
  11. "port": 9003,
  12. "pathMappings": { "/src": "${workspaceRoot}" }
  13. },
  14. {
  15. "name": "Launch currently open script",
  16. "type": "php",
  17. "request": "launch",
  18. "program": "${file}",
  19. "cwd": "${fileDirname}",
  20. "port": 0,
  21. "runtimeArgs": ["-dxdebug.start_with_request=yes"],
  22. "env": {
  23. "XDEBUG_MODE": "debug,develop",
  24. "XDEBUG_CONFIG": "client_port=${port}"
  25. }
  26. },
  27. {
  28. "name": "Launch Built-in web server",
  29. "type": "php",
  30. "request": "launch",
  31. "runtimeArgs": [
  32. "-dxdebug.mode=debug",
  33. "-dxdebug.start_with_request=yes",
  34. "-S",
  35. "localhost:0"
  36. ],
  37. "program": "",
  38. "cwd": "${workspaceRoot}",
  39. "port": 9003,
  40. "serverReadyAction": {
  41. "pattern": "Development Server \\(http://localhost:([0-9]+)\\) started",
  42. "uriFormat": "http://localhost:%s",
  43. "action": "openExternally"
  44. }
  45. }
  46. ]
  47. }