Skip to content

Instantly share code, notes, and snippets.

@aliboy08
Created August 30, 2024 03:47
Show Gist options
  • Save aliboy08/eb3dbf917d9a3b75e6cb0c36b04c89ce to your computer and use it in GitHub Desktop.
Save aliboy08/eb3dbf917d9a3b75e6cb0c36b04c89ce to your computer and use it in GitHub Desktop.
xdebug settings
[xdebug]
{{#if os.windows}}
zend_extension = php_xdebug.dll
{{else}}
zend_extension = {{extensionsDir}}/xdebug.so
{{/if}}
{{#if xdebugEnabled}}
{{!-- xdebug.mode=debug,develop --}}
xdebug.mode=profile
{{else}}
xdebug.mode=off
{{/if}}
xdebug.client_port=9003
xdebug.start_with_request=trigger
xdebug.discover_client_host=yes
xdebug.output_dir=G:\xdebug
xdebug.use_compression=false
xdebug.profiler_output_name=cachegrind.out.%c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment