Created
May 3, 2021 17:47
-
-
Save unrivaledcreations/e637998fc8c7a96342f2a596b6ef00ca to your computer and use it in GitHub Desktop.
`ext-xdebug.ini` for use with Laravel Valet.
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
| zend_extension=/usr/local/Cellar/php/8.0.5/pecl/20200930/xdebug.so | |
| xdebug.mode=debug | |
| xdebug.client_host=127.0.0.1 | |
| xdebug.client_port=9003 | |
| xdebug.discover_client_host=true | |
| xdebug.default.idekey=PHPSTORM |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To install:
pecl install xdebugto install.php --inito locatephp.ini.nano php.inito remove thezend_extensionline added by thexdebuginstaller.cd {conf.d}to visit theconf.ddirectory for php.curl -o ext-xdebug.ini https://gist.githubusercontent.com/unrivaledcreations/e637998fc8c7a96342f2a596b6ef00ca/rawto download this file into theconf.ddirectory.nano ext-xdebug.inito update thezend_extensionparameter; it must match the install location ofxdebug.so.valet restartto make it take effect.