baikal/.travis.yml

32 lines
452 B
YAML
Raw Normal View History

language: php
php:
- 5.5
- 5.6
- 7
- hhvm
matrix:
fast_finish: true
env:
matrix:
- LOWEST_DEPS=""
- LOWEST_DEPS="--prefer-lowest"
services:
- mysql
sudo: false
cache: vendor
before_script:
# - mysql -e 'create database sabredav'
# - composer self-update
- composer update --prefer-source $LOWEST_DEPS
script:
- find Core -name "*.php" | xargs -n1 php -l
2016-03-12 20:19:48 -05:00
- ./vendor/bin/sabre-cs-fixer fix . --dry-run --diff