halfpastfouram/collection

View on GitHub
.travis.yml

Summary

Maintainability
Test Coverage
language: php
php:
  - '5.6'
  - '7.0'
  - '7.1'
  - '7.2'
  - nightly

before_script:
  - composer self-update
  - composer install
  - mkdir build/logs -p

script:
  - phpunit

after_success:
  - vendor/bin/test-reporter

after_script:
  - rm -rf build/logs