30 lines
435 B
YAML
30 lines
435 B
YAML
|
# Use Docker environment
|
||
|
sudo: false
|
||
|
|
||
|
# Setup build matrix
|
||
|
language: php
|
||
|
php:
|
||
|
- 5.4
|
||
|
- 5.5
|
||
|
- 5.6
|
||
|
- 7.0
|
||
|
- hhvm
|
||
|
|
||
|
env:
|
||
|
matrix:
|
||
|
- PREFER_LOWEST="--prefer-lowest"
|
||
|
- PREFER_LOWEST=""
|
||
|
|
||
|
# Dependencies
|
||
|
install:
|
||
|
- composer self-update
|
||
|
- travis_retry composer update --no-interaction --prefer-source --dev $PREFER_LOWEST
|
||
|
|
||
|
script: phpunit
|
||
|
|
||
|
# Cache dependencies
|
||
|
cache:
|
||
|
directories:
|
||
|
- vendor
|
||
|
- $HOME/.composer/cache
|