PHP Classes

File: .travis.yml

Recommend this page to a friend!
  Classes of Johnny Mast   Redbox PHP Scandir Filter   .travis.yml   Download  
File: .travis.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Redbox PHP Scandir Filter
Scan files for new or modified files
Author: By
Last change: hmm
Date: 8 years ago
Size: 685 bytes
 

Contents

Class file image Download
language: php sudo: false php: - 5.3 - 5.4 - 5.5 - 5.6 - 7 - hhvm env: - COMPOSER_OPTS="" - COMPOSER_OPTS="--prefer-lowest" before_install: install: - travis_retry composer update $COMPOSER_OPTS script: - if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then vendor/bin/phpunit -c ./phpunit.xml --testsuite=travis; fi - if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then vendor/bin/phpunit -c ./phpunit.xml --testsuite=travis --coverage-text --coverage-clover=coverage.clover; fi after_script: - wget https://scrutinizer-ci.com/ocular.phar - if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi;