Last active
August 9, 2018 07:11
-
-
Save JunielKatarn/7993eaa871376621b32f7527a1f08b49 to your computer and use it in GitHub Desktop.
Minimal PHP configuration for XDebug and SQLite
This file contains 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
[PHP] | |
extension_dir = "ext" | |
zend_extension=php_xdebug-2.5.5-7.1-vc14-x86_64.dll | |
;XDebug | |
xdebug.remote_enable=on | |
xdebug.remote_handler=dbgp | |
xdebug.remote_port=9000 | |
xdebug.idekey=netbeans-xdebug | |
; Additional stuff | |
[Date] | |
date.timezone = America/Los_Angeles | |
; MySQL | |
;pdo_mysql.default_socket=/tmp/mysql.sock | |
;[sqlite] | |
;extension=php_pdo_sqlite.dll |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment