2015-01-27 12:25:03 +01:00
|
|
|
#!/usr/bin/env bash
|
2015-01-14 15:42:43 +01:00
|
|
|
|
2015-01-27 12:25:03 +01:00
|
|
|
COMMAND=`which $1`;
|
|
|
|
|
shift 1
|
2015-01-14 15:42:43 +01:00
|
|
|
|
2015-01-27 12:25:03 +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 "$@"
|