Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "Listen for XDebug",
  6. "type": "php",
  7. "request": "launch",
  8. "port": 9000,
  9. "xdebugSettings": {
  10. "max_children": 70,
  11. "max_depth": 5,
  12. "show_hidden": 1
  13. }
  14. },
  15. {
  16. "name": "Launch currently open script",
  17. "type": "php",
  18. "request": "launch",
  19. "program": "${file}",
  20. "cwd": "${fileDirname}",
  21. "port": 9000
  22. }
  23. ]
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement