Skip to content

Instantly share code, notes, and snippets.

@habibun
Created November 19, 2018 09:32
Show Gist options
  • Save habibun/fcb100ef9275baef1d438a620c7f6f15 to your computer and use it in GitHub Desktop.
Save habibun/fcb100ef9275baef1d438a620c7f6f15 to your computer and use it in GitHub Desktop.
Xdebug configuration with phpstorm file linking symfony
zend_extension=/usr/lib/php5/20121212/xdebug.so
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.max_nesting_level=300
xdebug.idekey=PHPSTORM
xdebug.remote_autostart=1
xdebug.profiler_enable=1
xdebug.show_error_trace = 1
xdebug.file_link_format = "phpstorm://open?file=%f&line=%l"
framework:
ide: 'phpstorm://open?file=%%f&line=%%l'
@habibun
Copy link
Author

habibun commented Nov 19, 2018

inside conf.d

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