MDL-63495 comment: Added provider::get_users_in_context_from_sql
[moodle.git] / lib / mustache / CONTRIBUTING.md
blobc0b323debf834b50a2194254a1239e2d728722e2
1 # Contributions welcome!
4 ### Here's a quick guide:
6  1. [Fork the repo on GitHub](https://github.com/bobthecow/mustache.php).
8  2. Update submodules: `git submodule update --init`
10  3. Run the test suite. We only take pull requests with passing tests, and it's great to know that you have a clean slate. Make sure you have PHPUnit 3.5+, then run `phpunit` from the project directory.
12  4. Add tests for your change. Only refactoring and documentation changes require no new tests. If you are adding functionality or fixing a bug, add a test!
14  5. Make the tests pass.
16  6. Push your fork to GitHub and submit a pull request against the `dev` branch.
19 ### You can do some things to increase the chance that your pull request is accepted the first time:
21  * Submit one pull request per fix or feature.
22  * To help with that, do all your work in a feature branch (e.g. `feature/my-alsome-feature`).
23  * Follow the conventions you see used in the project.
24  * Use `phpcs --standard=PSR2` to check your changes against the coding standard.
25  * Write tests that fail without your code, and pass with it.
26  * Don't bump version numbers. Those will be updated — per [semver](http://semver.org) — once your change is merged into `master`.
27  * Update any documentation: docblocks, README, examples, etc.
28  * ... Don't update the wiki until your change is merged and released, but make a note in your pull request so we don't forget.
31 ### Mustache.php follows the PSR-* coding standards:
33  * [PSR-0: Class and file naming conventions](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-0.md)
34  * [PSR-1: Basic coding standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-1-basic-coding-standard.md)
35  * [PSR-2: Coding style guide](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md)