language: php
php:
  - 5.5
  - 5.6
install:
  - composer install --prefer-dist --no-dev --optimize-autoloader --quiet
notifications:
  email:
    recipients:
      - 
[email protected]
    on_success: always
    on_failure: always
script: phpunit src/BuilderTest.php --coverage-html --coverage-clover=coverage.xml
after_success: bash <(curl -s https://codecov.io/bash)