xdebug.ini 543 B

12345678910111213141516171819
  1. ; NOTE: The actual debug.so extention is NOT SET HERE but rather (/usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini)
  2. xdebug.remote_host="host.docker.internal"
  3. xdebug.remote_connect_back=0
  4. xdebug.remote_port=9000
  5. xdebug.idekey=PHPSTORM
  6. xdebug.remote_autostart=0
  7. xdebug.remote_enable=0
  8. xdebug.cli_color=0
  9. xdebug.profiler_enable=0
  10. xdebug.profiler_output_dir="~/xdebug/phpstorm/tmp/profiling"
  11. xdebug.remote_handler=dbgp
  12. xdebug.remote_mode=req
  13. xdebug.var_display_max_children=-1
  14. xdebug.var_display_max_data=-1
  15. xdebug.var_display_max_depth=-1