Skip to content

Instantly share code, notes, and snippets.

@4lun
Created July 14, 2016 16:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 4lun/de0c011c0f44d272f29381d0794f7180 to your computer and use it in GitHub Desktop.
Save 4lun/de0c011c0f44d272f29381d0794f7180 to your computer and use it in GitHub Desktop.
Use phpunit from local vendor directory
# Local phpunit
phpunit() {
if [ -f "./vendor/bin/phpunit" ]; then
php ./vendor/bin/phpunit "$@";
else
echo "Unable to locate phpunit in ./vendor/bin";
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment