summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: b5953fd44aef82d0edb1935b54fb1989b5d391af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
language: php
php:
  - "5.6"
  - "5.5"
  - "5.4"
  - "5.3"
# PHP 5.6 is not yet released, allow failures
matrix:
  allow_failures:
    - php: "5.6"
notifications:
  irc:
    channels:
        - "chat.freenode.net#dokuwiki"
    on_success: change
    on_failure: change
install:
  - wget https://phar.phpunit.de/phpunit-4.3.5.phar -O _test/phpunit
  - chmod 755 _test/phpunit
script: cd _test && ./phpunit --verbose --stderr