Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 1.03 KB

CONTRIBUTING.md

File metadata and controls

40 lines (29 loc) · 1.03 KB

Contributing

Example apps

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

Releasing

  1. Commit all outstanding changes

  2. Bump the version in src/Bugsnag/Configuration.php.

  3. Update the CHANGELOG.md, and README if appropriate.

  4. Build a new phar package

    composer install
    php pharbuilder.php
    
  5. Commit, tag push

    git commit -am v2.x.x
    git tag v2.x.x
    git push origin master && git push --tags