summaryrefslogtreecommitdiff
path: root/CONTRIBUTING.md
blob: 9a1dee53555e290ef62542a9b8fd837d85c2c856 (plain)
1
2
3
4
5
6
7
8
9
10
# Contributing

## Code style

* Make sure your 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.
* If possible cover your code by test cases.