Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 1.26 KB

CONTRIBUTING.md

File metadata and controls

35 lines (23 loc) · 1.26 KB

Contributing to lcobucci/jwt

First off, thanks for taking the time to contribute!

Reporting issues

We accept bug and feature requests via issues created here.

Prior to submitting a bug report

  • Always search the issue or pull request list first - The odds are good that if you've found a problem, someone else has found it, too;
  • Always try the master branch - to see if the reported bug has not already been fixed.

Pull Requests

We accept contributions via pull requests here.

  • Follow PSR-2 coding standards;
  • Follow PSR-4 autoloading standards;
  • Follow semver;
  • Add tests (everything MUST be well tested);
  • Improve documentation (don't forget to update README.md);
  • Create topic branchs (don't send a PR from your master);
  • One pull request per feature;
  • Send coherent history by rebasing your work before submitting;

Branches

  • master: used to the next major release (new features that breaks BC)
  • 3.0: used to fix bugs
  • 2.1: unmaintained (all users should upgrade to +3.0)

Thank you and happy coding!

@lcobucci