PHP Classes

File: .travis.yml

Recommend this page to a friend!
  Classes of Protung Dragos   PHP WSDL Generator   .travis.yml   Download  
File: .travis.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP WSDL Generator
Generate WSDL from PHP classes code
Author: By
Last change: Update of .travis.yml
Date: 2 months ago
Size: 568 bytes
 

Contents

Class file image Download
language: php php: - 5.6 - 7.0 - 7.1 - 7.2 - 7.3 # This triggers builds to run on the new TravisCI infrastructure. # See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/ sudo: false before_script: - travis_retry composer self-update - travis_retry composer install ${COMPOSER_FLAGS} --no-interaction script: - vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover after_script: - if [[ $TRAVIS_PHP_VERSION == '7.3' ]]; then php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover; fi