- Fork the notifier on github
- Build and test your changes. Run the tests using phpunit (vendored to
vendor/bin/phpunit
) - Commit and push until you are happy with your contribution
- Make a pull request
- Thanks!
Test the notifier by running the application locally.
Install composer, and then cd into example/php
and start the server:
composer install
php index.php
-
Commit all outstanding changes
-
Bump the version in
src/Bugsnag/Configuration.php
. -
Update the CHANGELOG.md, and README if appropriate.
-
Build a new phar package
composer install php pharbuilder.php
-
Commit, tag push
git commit -am v2.x.x git tag v2.x.x git push origin master && git push --tags