Created
May 9, 2023 04:05
-
-
Save keyle/fee4b5dd417ec0baf7e2537e48742a82 to your computer and use it in GitHub Desktop.
launch.json for PHP XDEBUG
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Listen for Xdebug", | |
"type": "php", | |
"request": "launch", | |
"stopOnEntry": false, // !!! doesn't work, hit the refresh (Green) icon and keep going | |
"port": 9000, | |
"pathMappings": { | |
"/app": "${workspaceFolder}" | |
}, | |
"ignore": [ | |
"**/vendor/**/*", | |
"**/index.php" // also does not work, fml | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment