Advertisement
dzooli

VSCode launch.json for XDebug

Apr 30th, 2021
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.58 KB | None | 0 0
  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": "XDebug",
  9.             "type": "php",
  10.             "request": "launch",
  11.             "port": 9001,
  12.             "pathMappings": {
  13.                 "/var/www/html": "${workspaceFolder}",
  14.             },
  15.             "ignore": [
  16.                 "**/vendor/**/*.php"
  17.             ],
  18.         },
  19.     ]
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement