summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 1826b2361db92b240d698769c2663020f4dbc0d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
language: php

sudo: false

php:
  - 5.5
  - 5.6
  - 7
  - hhvm

matrix:
  allow_failures:
    - php: hhvm
  fast_finish: true

addons:
  sauce_connect: true

cache:
  directories:
  - $HOME/.composer/cache

before_install:
  - composer selfupdate

install:
  - composer install

before_script:
  - export PATH=./bin/:$PATH

script:
  - phing coverage

after_script:
  - php ./bin/coveralls -v