block-explorer/.travis.yml
Mark Beamer Jr e499a3c824
Update composer
Use PHP 7.2 like production
2020-01-10 23:58:48 -05:00

28 lines
710 B
YAML

language: php
dist: trusty
sudo: false
php:
- 7.1
- 7.2
matrix:
fast_finish: true
include:
- php: 7.1
env: PHPCS=1
before_script:
- if [[ $PHPCS = 1 ]]; then composer require cakephp/cakephp-codesniffer:~2.1; fi
- if [[ $PHPCS != 1 ]]; then composer install; fi
- if [[ $PHPCS != 1 ]]; then composer require phpunit/phpunit:"^5.7|^6.0"; fi
- if [[ $PHPCS != 1 ]]; then composer run-script post-install-cmd --no-interaction; fi
script:
- if [[ $PHPCS != 1 ]]; then vendor/bin/phpunit; fi
- if [[ $PHPCS = 1 ]]; then vendor/bin/phpcs -p --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests ./config ./webroot; fi
notifications:
email: false