summaryrefslogtreecommitdiff
path: root/CONTRIBUTING.md
blob: 9472436472b729bb3694427d8eac22d700e12d3d (plain)
1
2
3
4
5
6
7
8
9
10
11
# Contributing
## Coding guide lines
* Make sure you code follows the [PSR-12](https://www.php-fig.org/psr/psr-12/) code style.
  You may use `composer run phpcs` to verify that.
* Use `use` statements wherever possible instead of writing the fully qualified name.
* Order the composer/npm dependencies alphabetically.
* Do not use code from the [includes](./includes) directory anywhere else.
* Please cover your code by unit tests. Code under `includes` does not require tests.

## Pull requests
Please create single pull requests for every feature instead of creating one big monster of pull request containing a complete rewrite.