Created
March 25, 2021 00:54
-
-
Save chrispian/bcf2ff705eb28f6336e0388c6d38d55c to your computer and use it in GitHub Desktop.
xdebug php.ini settings for Laravel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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