PHP 5.5 is the new minimum requirement

This is a decision annouced by @MarkBaker in Gitter to be able to
use `DateTimeInterface`.

Also remove deprecated composer option, and introduce caching for
faster CI tests
This commit is contained in:
Adrien Crivelli 2016-08-13 23:40:31 +09:00
parent 49d821f093
commit a1f8551ccb
No known key found for this signature in database
GPG Key ID: B182FD79DC6DE92E
1 changed files with 7 additions and 7 deletions

View File

@ -1,29 +1,29 @@
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: hhvm
cache:
directories:
- vendor
- $HOME/.composer/cache
before_script:
## Packages
- sudo apt-get -qq update > /dev/null
## Composer
- composer self-update
- composer install --prefer-source --dev
- phpenv global "$TRAVIS_PHP_VERSION"
- composer install
script:
## PHP_CodeSniffer
- ./vendor/bin/phpcs --report-width=200 --report-summary --report-full src/ unitTests/ --standard=PSR2 -n
## PHPUnit
- ./vendor/bin/phpunit -c ./unitTests/
notifications:
email: false