$ git clone https://github.com/codeclimate/php-test-reporter
$ curl -sS https://getcomposer.org/installer | php
$ php composer.phar update -o -v
$ ./vendor/bin/phpunit
$ ./vendor/bin/phpunit --coverage-html=build/logs/coverage
# Create a new git tag (optional)
$ git tag v1.x.x -m 'Version 1.x.x'
# Build the PHAR using box project
$ ./vendor/bin/box build
- Create a GPG key (Should be the repositoy's maintainer one)
- Create a signature and upload to Github
- Go to the releases section on Github
- Click "Edit" on the latest tag/release
- Add the
codeclimate-test-reporter.phar
in the "Attach binaries..." section - Click "Update release"
- Submit PRs to: https://github.com/codeclimate/php-test-reporter
- Note: all changes and fixes must have appropriate test coverage.