Skip to content

Commit

Permalink
Update .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
treffynnon committed Jan 2, 2018
1 parent 13bd35b commit 647b5d6
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
language: php
php:
- 5.2
- 5.3
- 5.4
- 5.6
- 7.0
- 7.1
- hhvm
install: "composer install"
script: "composer run-script test -- --colors --coverage-text"
matrix:
include:
- php: 5.2
dist: precise
- php: 5.3
dist: precise
dist: precise
install: "if [ `command -v composer` ]; then composer install; else curl -sSfL https://phar.phpunit.de/phpunit-4.phar -o ~/phpunit.phar; fi"
script: |
if [ `command -v composer` ]; then X="composer run-script test --"; else X="~/phpunit.phar"; fi; "$X --colors --coverage-text"

0 comments on commit 647b5d6

Please sign in to comment.