Created
September 21, 2017 17:08
-
-
Save kmaxat/862bab781981233d32f53a6309e52f02 to your computer and use it in GitHub Desktop.
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
{ | |
//Xdebug with php 7.1 setup | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Listen for XDebug", | |
"type": "php", | |
"request": "launch", | |
"port": 9000, | |
"serverSourceRoot": "/home/vagrant/Code/blackhole-todo", | |
"localSourceRoot": "/home/kmaxat/PhpstormProjects/blackhole-todo" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
serverSourceRoot
andlocalSourceRoot
are deprecated. UsepathMappings
instead. Like so :)