openpgp-php/.travis.yml
Stephen Paul Weber 724d5b16f3 Newer phpunit can't support older PHP
They're very old, and 5.6 is available in Debian stable and oldstable,
so drop support.
2018-07-25 10:31:52 -05:00

26 lines
432 B
YAML

language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
- hhvm
dist: trusty
env:
- PHPSECLIB="2.0.0"
- PHPSECLIB="2.0.1"
- PHPSECLIB="2.0.2"
- PHPSECLIB="2.0.3"
- PHPSECLIB="2.0.4"
matrix:
allow_failures:
- php: 7.1
- php: 7.2
fast_finish: true
before_script: 'sed -i "s/\"phpseclib\/phpseclib\": \"[^\"]*/\"phpseclib\/phpseclib\": \"$PHPSECLIB/" composer.json && composer install --prefer-source --dev'