2017-09-23 18:55:47 +02:00
|
|
|
dist: trusty
|
2016-08-26 17:21:39 +02:00
|
|
|
language: php
|
|
|
|
|
|
|
|
install:
|
2018-11-09 17:07:36 +01:00
|
|
|
- composer global require dealerdirect/phpcodesniffer-composer-installer;
|
|
|
|
- composer global require phpcompatibility/php-compatibility;
|
|
|
|
# Use PHPUnit 6 for unit tests (stable), requires PHP 7
|
2018-08-05 00:39:53 +02:00
|
|
|
- if [[ $TRAVIS_PHP_VERSION == "7.0" ]]; then
|
|
|
|
composer global require phpunit/phpunit ^6;
|
|
|
|
fi
|
2018-11-09 17:07:36 +01:00
|
|
|
# Use latest PHPUnit on nightly to detect breaking changes
|
|
|
|
- if [[ $TRAVIS_PHP_VERSION == "nightly" ]]; then
|
|
|
|
composer global require phpunit/phpunit;
|
|
|
|
fi
|
2016-08-26 17:21:39 +02:00
|
|
|
|
|
|
|
script:
|
|
|
|
- phpenv rehash
|
2018-11-09 17:07:36 +01:00
|
|
|
# Run PHP_CodeSniffer on all versions
|
2018-12-07 18:46:34 +01:00
|
|
|
- ~/.config/composer/vendor/bin/phpcs . --standard=phpcs.xml --warning-severity=0 --extensions=php -p;
|
2018-11-09 17:07:36 +01:00
|
|
|
# Check PHP compatibility for the lowest supported version
|
|
|
|
- if [[ $TRAVIS_PHP_VERSION == "5.6" ]]; then
|
2018-12-07 18:46:34 +01:00
|
|
|
~/.config/composer/vendor/bin/phpcs . --standard=phpcompatibility.xml --warning-severity=0 --extensions=php -p;
|
2018-08-01 18:48:19 +02:00
|
|
|
fi
|
2018-11-09 17:07:36 +01:00
|
|
|
# Run unit tests (stable)
|
2018-08-05 00:39:53 +02:00
|
|
|
- if [[ $TRAVIS_PHP_VERSION == "7.0" ]]; then
|
|
|
|
phpunit --configuration=phpunit.xml --include-path=lib/;
|
|
|
|
fi
|
2018-11-09 17:07:36 +01:00
|
|
|
# Run unit tests (latest/nightly)
|
|
|
|
# Check PHP compatibility for all versions, starting at the lowest supported version in order to detect breaking changes
|
|
|
|
- if [[ $TRAVIS_PHP_VERSION == "nightly" ]]; then
|
|
|
|
phpunit --configuration=phpunit.xml --include-path=lib/;
|
2018-12-07 18:46:34 +01:00
|
|
|
~/.config/composer/vendor/bin/phpcs . --standard=PHPCompatibility --warning-severity=0 --extensions=php -p --runtime-set testVersion 5.6-;
|
2018-11-09 17:07:36 +01:00
|
|
|
fi
|
2016-09-10 19:10:42 +02:00
|
|
|
|
|
|
|
matrix:
|
2016-09-10 19:12:55 +02:00
|
|
|
fast_finish: true
|
2017-09-24 18:43:11 +02:00
|
|
|
|
|
|
|
include:
|
|
|
|
- php: 5.6
|
|
|
|
- php: 7.0
|
|
|
|
- php: nightly
|
|
|
|
|
2016-09-10 19:10:42 +02:00
|
|
|
allow_failures:
|
2018-01-11 12:41:25 +01:00
|
|
|
- php: nightly
|