Skip to content

Latest commit

 

History

History
50 lines (36 loc) · 2.23 KB

CONTRIBUTING.md

File metadata and controls

50 lines (36 loc) · 2.23 KB

Zephir is an open source project and a volunteer effort. Contributions are welcome!

General

We only accept bug reports, new feature requests and pull requests in GitHub.

If you have a change or new feature in mind, please fill an NFR.

Pull request procedure

Pull requests should be targeted at Zephir's master branch. Before pushing to your Github repo and issuing the pull request, please do two things:

  1. Rebase your local changes against the master branch. Resolve any conflicts that arise.

  2. Run the full Zephir test suite with the ./vendor/bin/phpunit command. You're not off the hook even if you just stick to documentation; code examples in the docs are tested as well!

  3. If your pull request fix or add some functionality - you have to add tests. That is very important. When you add tests, you are helping other developers, and also yourself, do not make mistakes in the future.

Pull requests will be treated as "review requests", and we will give feedback we expect to see corrected on coding style and substance before pulling. Changes contributed via pull request should focus on a single issue at a time, like any other. We will not accept pull-requests that try to "sneak" unrelated changes in.

Normally, all pull requests must include regression tests that test your change. Occasionally, a change will be very difficult to test for. In those cases, please include a note in your commit message explaining why.

In the licensing header at the beginning of any files you change, please make sure the listed date range includes the current year.

Bugs

Many bugs are raised because users are not running the latest version. Please visit the download page, download/clone the latest available version (or compile it) and confirm if the issue you are experiencing is indeed a bug. When submitting bugs to the issue tracker make sure your issue includes:

  • Code to reproduce the bug.
  • Your environment: OS, compiler.
  • Zephir version, if your version is outdated - try getting the lastest version.

Thanks!
Zephir Team