Updating path to PHPUnit to use the PHPUnit installed by Composer

1.0
Ben Ramsey 2014-11-28 22:52:23 -05:00
parent 6995ac1130
commit a06fc9a1f4
3 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ before_script:
script: script:
- mkdir -p build/logs - mkdir -p build/logs
- phpunit --coverage-text - ./vendor/bin/phpunit --coverage-text
- ./vendor/bin/phpcs src --standard=psr2 - ./vendor/bin/phpcs src --standard=psr2
after_script: after_script:

View File

@ -29,7 +29,7 @@ We accept contributions via Pull Requests on [Github](https://github.com/thephpl
## Running Tests ## Running Tests
``` bash ``` bash
$ phpunit $ ./vendor/bin/phpunit
``` ```

View File

@ -175,7 +175,7 @@ $ composer require "league/oauth2-client=~0.5.0"
## Testing ## Testing
``` bash ``` bash
$ phpunit $ ./vendor/bin/phpunit
``` ```
## Contributing ## Contributing