You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Manage pull requests and conduct code reviews in your IDE with full source-tree context. Comment on any line, not just the diffs. Use jump-to-definition, your favorite keybindings, and code intelligence with more of your workflow.<br> <atitle="Try CodeStream"href="https://sponsorlink.codestream.com/?utm_source=vscmarket&utm_campaign=phpdebug&utm_medium=banner">Learn More</a></p>
11
-
12
7
### Sponsor PHP Debug Adapter for Visual Studio Code
13
8
14
9
If you find this extension useful, if it helps you solve your problems and if you appreciate the support given here, consider sponsoring our work.
@@ -78,6 +73,7 @@ More general information on debugging with VS Code can be found on https://code.
78
73
-`ignore`: An optional array of glob patterns that errors should be ignored from (for example `**/vendor/**/*.php`)
79
74
-`ignoreExceptions`: An optional array of exception class names that should be ignored (for example `BaseException`, `\NS1\Exception`, `\*\Exception` or `\**\Exception*`)
80
75
-`skipFiles`: An array of glob patterns, to skip when debugging. Star patterns and negations are allowed, for example, `**/vendor/**` or `!**/vendor/my-module/**`.
76
+
-`skipEntryPaths`: An array of glob patterns, to immediately detach from and ignore for debugging if the entry script matches (example `**/ajax.php`).
81
77
-`maxConnections`: Accept only this number of parallel debugging sessions. Additional connections will be dropped and their execution will continue without debugging.
82
78
-`proxy`: DBGp Proxy settings
83
79
-`enable`: To enable proxy registration set to `true` (default is `false).
@@ -93,6 +89,8 @@ More general information on debugging with VS Code can be found on https://code.
93
89
-`max_depth`: maximum depth that the debugger engine may return when sending arrays, hashes or object structures to the IDE (there should be no need to change this as depth is retrieved incrementally, large value can cause IDE to hang).
94
90
-`show_hidden`: This feature can get set by the IDE if it wants to have more detailed internal information on properties (eg. private members of classes, etc.) Zero means that hidden members are not shown to the IDE.
95
91
-`xdebugCloudToken`: Instead of listening locally, open a connection and register with Xdebug Cloud and accept debugging sessions on that connection.
92
+
-`stream`: Allows to influence DBGp streams. Xdebug only supports `stdout` see [DBGp stdout](https://xdebug.org/docs/dbgp#stdout-stderr)
0 commit comments