| language: php
php:
    - '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
 |