Last active
April 8, 2025 10:33
-
-
Save tuto1902/bf06f1a110f4e6de694cc87edfec9dde to your computer and use it in GitHub Desktop.
VSCode Debugger Launch Configuration
This file contains hidden or 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", | |
"log": false, | |
"externalConsole": false, | |
"pathMappings": { | |
"/var/www/html": "${workspaceFolder}" | |
}, | |
"ignore": [ | |
"**/vendor/**/*.php" | |
], | |
"port": 9003 | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment