-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* #103 - Add xDebug configuration * Create .lando folder * Add xdebug info in README.md * Rearrange README.md points Co-authored-by: mhawwari <[email protected]>
- Loading branch information
1 parent
3db3687
commit aedb02c
Showing
3 changed files
with
26 additions
and
3 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[PHP] | ||
|
||
; Xdebug | ||
xdebug.max_nesting_level = 256 | ||
xdebug.show_exception_trace = 0 | ||
xdebug.collect_params = 0 | ||
; Extra custom Xdebug setting for debug to work in VSCode. | ||
xdebug.mode = debug | ||
xdebug.client_host = ${LANDO_HOST_IP} | ||
xdebug.client_port = 9003 | ||
xdebug.start_with_request = trigger | ||
; xdebug.remote_connect_back = 1 | ||
xdebug.log = /tmp/xdebug.log |
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