PHP Classes

File: vendor/webmozart/assert/.travis.yml

Recommend this page to a friend!
  Classes of Abed Nego Ragil Putra   Laravel Blogging Platform   vendor/webmozart/assert/.travis.yml   Download  
File: vendor/webmozart/assert/.travis.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Blogging Platform
Manage blog posts using Laravel and Bootstrap
Author: By
Last change:
Date: 5 years ago
Size: 1,051 bytes
 

Contents

Class file image Download
language: php sudo: false branches: only: - master cache: directories: - $HOME/.composer/cache/files matrix: include: - php: 5.3 - php: 5.4 - php: 5.5 - php: 5.6 - php: hhvm - php: nightly - php: 7.0 env: COVERAGE=yes - php: 7.0 env: COMPOSER_FLAGS='--prefer-lowest --prefer-stable' allow_failures: - php: hhvm - php: nightly fast_finish: true before_install: - if [[ $TRAVIS_PHP_VERSION != hhvm && $COVERAGE != yes ]]; then phpenv config-rm xdebug.ini; fi; - if [[ $TRAVIS_REPO_SLUG = webmozart/assert ]]; then cp .composer-auth.json ~/.composer/auth.json; fi; - composer self-update install: composer update $COMPOSER_FLAGS --prefer-dist --no-interaction script: if [[ $COVERAGE = yes ]]; then vendor/bin/phpunit --verbose --coverage-clover=coverage.clover; else vendor/bin/phpunit --verbose; fi after_script: if [[ $COVERAGE = yes ]]; then wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi