Advertisement
Guest User

Untitled

a guest
Aug 24th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 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. "serverSourceRoot": "/home/vagrant/Code",
  10. "localSourceRoot": "${workspaceRoot}",
  11. "ignore": [
  12. "**/vendor/**/*.php"
  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