Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 1.11 KB

CONTRIBUTING.md

File metadata and controls

29 lines (19 loc) · 1.11 KB

Contributing

Thank you for contributing to BraincraftedBootstrapBundle.

Here are a few rules to make code reviews and merging your code into the repository easier.

You MUST follow the PSR-1 and PSR-2. If you don't know about them, read the recommendations. You can use PHP-CS-Fixer tool to find errors in your code.

You MUST run the test suite.

You MUST write (or update) unit tests.

You SHOULD write documentation.

Please, write commit messages that make sense, and rebase your branch before submitting your Pull Request.

If asked, squash your commits. This is used to "clean" your Pull Request before merging it (we don't want commits such as fix tests, fix 2, fix 3, etc.).

Thank you!

This document is based on an article by William Durand.