xref: /plugin/davcal/vendor/sabre/vobject/.travis.yml (revision e05a9e4ce8d5eea570eeaab549bb1c7f175cf322)
1language: php
2php:
3  - 5.3
4  - 5.4
5  - 5.5
6  - 5.6
7  - 7
8  - hhvm
9
10matrix:
11  fast_finish: true
12  allow_failures:
13    - php: 7
14
15script:
16  - phpunit --configuration tests/phpunit.xml
17  - ./bin/phpcs -p --standard=tests/phpcs/ruleset.xml lib/
18
19
20before_script: composer install
21