Files
dotfiles/bin/xdebug
T

7 lines
202 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2015-01-14 15:42:43 +01:00
COMMAND=`which $1`;
shift 1
2015-01-14 15:42:43 +01:00
PHP_IDE_CONFIG="serverName=sandbox" XDEBUG_CONFIG="idekey=PHPSTORM remote_host=127.0.0.1 remote_port=19000" php -d xdebug.remote_enable=1 $COMMAND "$@"