diff options
-rw-r--r-- | .travis.yml | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/.travis.yml b/.travis.yml index f9d755b..6570e66 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,19 +1,19 @@ language: php php: - - 5.3 - - 5.4 - - 5.5 - - 5.6 - - 7.0 - - 7.1 - - nightly - - hhvm + - "5.3" + - "5.4" + - "5.5" + - "5.6" + - "7.0" + - "7.1" + - "hhvm" + - "nightly" matrix: fast_finish: true allow_failures: - - php: nightly + - php: "nightly" sudo: false @@ -33,5 +33,6 @@ after_success: cache: directories: - $HOME/.composer/cache - - vendor - - ocular.phar + +script: + - ./vendor/bin/phpunit --configuration phpunit.xml |