From a06fc9a1f4d009fdb9d8064c0a9027e6ce440719 Mon Sep 17 00:00:00 2001 From: Ben Ramsey Date: Fri, 28 Nov 2014 22:52:23 -0500 Subject: [PATCH] Updating path to PHPUnit to use the PHPUnit installed by Composer --- .travis.yml | 2 +- CONTRIBUTING.md | 2 +- README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index b610f0d..110ee98 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,7 @@ before_script: script: - mkdir -p build/logs - - phpunit --coverage-text + - ./vendor/bin/phpunit --coverage-text - ./vendor/bin/phpcs src --standard=psr2 after_script: diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 40b5477..ce73506 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -29,7 +29,7 @@ We accept contributions via Pull Requests on [Github](https://github.com/thephpl ## Running Tests ``` bash -$ phpunit +$ ./vendor/bin/phpunit ``` diff --git a/README.md b/README.md index 1cde7cd..c47ea23 100644 --- a/README.md +++ b/README.md @@ -175,7 +175,7 @@ $ composer require "league/oauth2-client=~0.5.0" ## Testing ``` bash -$ phpunit +$ ./vendor/bin/phpunit ``` ## Contributing