PHP Classes

File: .travis.yml

Recommend this page to a friend!
  Classes of Edgar Asatryan   notymo   .travis.yml   Download  
File: .travis.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: notymo
Send push notifications to iOS and Android devices
Author: By
Last change:
Date: 7 years ago
Size: 465 bytes
 

Contents

Class file image Download
language: php php: - '5.3' - '5.4' - '5.5' - '5.6' - '7.0' install: - composer install before_script: - if [ $TRAVIS_PHP_VERSION = '5.6' ]; then PHPUNIT_FLAGS="--coverage-clover coverage.xml"; else PHPUNIT_FLAGS=""; fi script: - phpunit $PHPUNIT_FLAGS; after_script: - if [ $TRAVIS_PHP_VERSION = '5.6' ]; then wget https://scrutinizer-ci.com/ocular.phar; php ocular.phar code-coverage:upload --format=php-clover coverage.xml; fi