#!/bin/sh
PHP_BIN='php'
WDIR=$(dirname $0)
#if test -x "${PHP_BIN}"; then
    cd "${WDIR}"
    "${PHP_BIN}" "../public/index.php" "${@}"
    exit "${?}"
#fi
echo "php binary not found, please install php-cli"
exit 1;
