1language: php
2php:
3  - "7.2"
4  - "7.3"
5  - "7.4"
6
7env:
8  - DOKUWIKI=stable
9
10before_install:
11  - wget https://raw.github.com/splitbrain/dokuwiki-travis/master/travis.sh
12
13install:
14  - if [[ $TRAVIS_PHP_VERSION > '7.1' ]]; then wget -O ~/.phpenv/versions/$(phpenv version-name)/bin/phpunit https://phar.phpunit.de/phpunit-7.phar; fi
15  - if [[ $TRAVIS_PHP_VERSION > '7.1' ]]; then chmod 755 ~/.phpenv/versions/$(phpenv version-name)/bin/phpunit; fi
16  - sh travis.sh
17
18script:
19  - cd _test && phpunit --stderr --group plugin_minimap --verbose --debug
20
21notifications:
22  email:
23    - gerardnico@gmail.com
24