Skip to content

Commit

Permalink
VSCode config
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-Schaer committed Oct 25, 2024
1 parent a526987 commit 59e5634
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Listen for Xdebug",
"type": "php",
"request": "launch",
"port": 9009, // Ensure this matches the port in php.ini
"pathMappings": {
"/var/www/html": "${workspaceFolder}" // Map the container path to your workspace
},
"log": true, // Optional: enable logging for debugging issues
"ignore": ["**/vendor/**/*.php"], // Optional: exclude vendor files from debugging
"xdebugSettings": {
"max_data": 65536,
"show_hidden": 1,
"max_depth": 5,
"max_children": 100
}
}
]
}

0 comments on commit 59e5634

Please sign in to comment.