PHP Classes

File: .travis.yml

Recommend this page to a friend!
  Classes of Johnny Mast   PHP Morse Code   .travis.yml   Download  
File: .travis.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Morse Code
Encode or decode your Morse code messages
Author: By
Last change: Removed HHVM testing but added php 7.2 and 7.3.
Updated travis file for HHVM testing.
Updated travis file for HHVM testing.
Updated travis file for HHVM testing.
Phpunit doesnt support php 7.0 so i removed it from the test configuration
Date: 5 years ago
Size: 495 bytes
 

Contents

Class file image Download
language: php sudo: false php: - 7.1 - 7.2 - 7.3 before_script: - travis_retry composer self-update - travis_retry composer install --no-interaction --prefer-source --dev script: - if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then phpunit --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;