summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 78f204c6050b38fe79007151c1bd703f163dc454 (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
language: php
sudo: false

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

env:
  - DB=sqlite
  - DB=mysql
  - DB=postgres

matrix:
  fast_finish: true

before_script:
  - phpenv config-add tests/php.ini
  - composer install
  - wget https://phar.phpunit.de/phpunit.phar

script:
  - php phpunit.phar -c tests/units.$DB.xml