.travis.yml
language: "php"
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- "composer require codeclimate/php-test-reporter --dev"
- "composer install"
script:
- "phpunit --testsuite=unit --coverage-text --coverage-clover build/logs/clover.xml"
after_script:
- CODECLIMATE_REPO_TOKEN="3e67cab439eb11e8eb03f5a9d98ea3d56d3b40dc86049181bdc3ad3a7b2077f5" vendor/bin/test-reporter --stdout > codeclimate.json
- "sh -c 'if [ \"$TRAVIS_PHP_VERSION\" != \"hhvm\" ]; then curl -X POST -d @codeclimate.json -H \"Content-Type: application/json\" -H \"User-Agent: Code Climate (PHP Test Reporter v0.1.1)\" https://codeclimate.com/test_reports ; fi'"