-
-
Save RyanRLong/f85362dbc4bfe73c37776118ed713856 to your computer and use it in GitHub Desktop.
Revisions
-
dhrrgn revised this gist
May 5, 2014 . 1 changed file with 4 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -34,6 +34,10 @@ The `remote_host` is the IDE's host ip from the vagrant box. `10.0.2.2` seems to  ## Set a breakpoint  ## Run your command, then switch to PHPStorm  -
dhrrgn revised this gist
May 5, 2014 . 1 changed file with 6 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -33,3 +33,9 @@ The `remote_host` is the IDE's host ip from the vagrant box. `10.0.2.2` seems to ### Run > Debug...  ## Run your command, then switch to PHPStorm  # Profit! -
dhrrgn revised this gist
May 5, 2014 . 1 changed file with 10 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,5 @@ # Configure ## `xdebug.ini` ``` ini @@ -22,5 +24,12 @@ The `remote_host` is the IDE's host ip from the vagrant box. `10.0.2.2` seems to #### Run > Edit Configurations...   # Start Debugging ### Run > Debug...  -
dhrrgn revised this gist
May 5, 2014 . 1 changed file with 8 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -16,4 +16,11 @@ The `remote_host` is the IDE's host ip from the vagrant box. `10.0.2.2` seems to ### Setup Server  ### Add Debug Configuration #### Run > Edit Configurations...  -
dhrrgn renamed this gist
May 5, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
dhrrgn created this gist
May 5, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ ## `xdebug.ini` ``` ini xdebug.remote_enable=1 xdebug.remote_handler=dbgp xdebug.remote_port=9000 xdebug.remote_autostart=1 xdebug.remote_connect_back=1 xdebug.idekey=vagrant xdebug.remote_host=10.0.2.2 ``` The `remote_host` is the IDE's host ip from the vagrant box. `10.0.2.2` seems to be the default...i think, works for me. ## In PHPStorm ### Setup Server 