PhpSpreadsheet/.travis.yml

31 lines
565 B
YAML
Raw Normal View History

2012-11-23 10:51:34 +00:00
language: php
php:
- 5.4
2013-09-06 08:53:46 +00:00
- 5.5
2014-07-09 10:18:09 +00:00
- 5.6
- 7.0
2014-07-09 10:18:09 +00:00
- hhvm
matrix:
2015-05-11 10:30:15 +00:00
allow_failures:
- php: hhvm
before_script:
## Packages
- sudo apt-get -qq update > /dev/null
## Composer
2015-05-11 10:58:26 +00:00
##@todo Remove when support of 5.2 will be dropped
2015-05-11 10:30:15 +00:00
- composer self-update
- composer install --prefer-source --dev
2015-05-11 10:58:26 +00:00
- phpenv global "$TRAVIS_PHP_VERSION"
2012-11-23 10:51:34 +00:00
script:
2015-05-11 10:30:15 +00:00
## PHP_CodeSniffer
2015-05-13 06:02:03 +00:00
- ./vendor/bin/phpcs --report-width=200 --report-summary --report-full Classes/ unitTests/ --standard=PSR2 -n
2015-05-11 10:30:15 +00:00
## PHPUnit
- phpunit -c ./unitTests/
2012-11-23 10:51:34 +00:00
notifications:
email: false