Skip to content

Instantly share code, notes, and snippets.

@chrispian
Created March 25, 2021 00:54
Show Gist options
  • Save chrispian/bcf2ff705eb28f6336e0388c6d38d55c to your computer and use it in GitHub Desktop.
Save chrispian/bcf2ff705eb28f6336e0388c6d38d55c to your computer and use it in GitHub Desktop.
xdebug php.ini settings for Laravel
# If using artisan tinker you need to pause the listener then start artisan and then restart the listener.
# When finished, you need to pause and restart as well.
#Set PhpStorm to listen on port 9090, and turn on the listener
[xdebug]
xdebug.remote_enable=1
xdebug.remote_port=9090
xdebug.idekey=PHPSTORM
xdebug.remote_host=localhost
xdebug.remote_autostart=on
xdebug.profiler_enable = 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment