Add a better XDebug command
Signed-off-by: Jacob Kiers <kiers@comandi.nl>
This commit is contained in:
parent
a67b2ace9e
commit
12ba7965a4
13
bin/xdebug
13
bin/xdebug
@ -1,6 +1,15 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
COMMAND=`which $1`;
|
COMMAND=$1;
|
||||||
shift 1
|
shift 1
|
||||||
|
|
||||||
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 "$@"
|
if [ ! -f $COMMAND ]; then
|
||||||
|
COMMAND=`which ${COMMAND}`
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -f "${COMMAND}" ]; then
|
||||||
|
echo "Usage: ${0} <command>"
|
||||||
|
exit 1;
|
||||||
|
fi
|
||||||
|
|
||||||
|
PHP_IDE_CONFIG="serverName=local" XDEBUG_CONFIG="remote_enable=1 remote_mode=req remote_port=9000 remote_host=127.0.0.1 remote_connect_back=0" php -d zend_extension=xdebug.so $COMMAND "$@"
|
||||||
|
Loading…
Reference in New Issue
Block a user