summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 4a05ab72d93ef638a3ec7a50a9c299fd13f2d39e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
language: php

php:
  - 7.0
  - 5.6
  - 5.5
  - 5.4
  - 5.3
  - hhvm

sudo: false

before_script:
  - composer self-update
  - composer config github-oauth.github.com ${GITHUB_OAUTH_TOKEN}
  - composer update --no-interaction

script:
  - phpunit --coverage-clover tests/clover.xml

after_script:
  - php vendor/bin/coveralls -v