Skip to content

Instantly share code, notes, and snippets.

@henno
Created June 20, 2019 06:53
Show Gist options
  • Save henno/f2abd00054ee4c5738768a43d342d913 to your computer and use it in GitHub Desktop.
Save henno/f2abd00054ee4c5738768a43d342d913 to your computer and use it in GitHub Desktop.
xdebug settings php.ini
xdebug.remote_enable=1
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.remote_autostart=1
; with sane limits
xdebug.var_display_max_depth = 10
xdebug.var_display_max_children = 512
xdebug.var_display_max_data = 1024
;xdebug.profiler_enable=0
;xdebug.profiler_output_dir="/Applications/MAMP/tmp"
@ChrisK-0
Copy link

extension=php_imagick.dll
zend_extension = xdebug

xdebug.start_with_request=yes
xdebug.remote_host=localhost
xdebug.remote_port=9003
xdebug.remote_autostart=1
xdebug.mode=develop,debug

; with sane limits
xdebug.var_display_max_depth = 10
xdebug.var_display_max_children = 512
xdebug.var_display_max_data = 1024

@pcbman43
Copy link

zend_extension = xdebug

xdebug.start_with_request=yes
xdebug.mode=develop,debug

; with sane limits
xdebug.var_display_max_depth = 10
xdebug.var_display_max_children = 512
xdebug.var_display_max_data = 1024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment