Files
faveo/code/vendor/bugsnag/bugsnag-laravel/CONTRIBUTING.md
2015-10-23 14:15:29 +05:30

1.1 KiB

Contributing

Example apps

Bugsnag supports both Laravel 4 and Laravel 5. You can test these out by running the locally.

brew tap josegonzalez/homebrew-php
brew install php56 php56-mcrypt composer

Then cd into example/laravel-4 and start the server:

composer install
php56 artisan serve --port 8004

The same works for example/laravel-5 and start the server:

composer install
php56 artisan serve --port 8005

Releasing

  1. Commit all outstanding changes

  2. Bump the version in src/Bugsnag/BugsnagLaravel/BugsnagLaravelServiceProvider.php and src/Bugsnag/BugsnagLaravel/BugsnagLumenServiceProvider.php

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

  4. Commit, tag push

    git commit -am v1.x.x git tag v1.x.x git push origin master v1.x.x