1# Contributing
2
3Tickets
4---
5If you found a bug, have a feature request... please do not forget to include the phptal version you are using. In case of a bug report, please also add information/code on how to reproduce the error.
6
7Bug fixes && new tests
8---
9Please create pull requests against the current version's base branch. At the time of writing, that would be branch 3.0.
10Don't forget to include the ticket number your PR is refering to.
11Please try to include as few commits as possible (and feasible), ideally only one commit per pull request (use squash-merge for example).
12Do not forget to update ```CHANGELOG.md```
13
14New Features / Breaking changes
15---
16Handle the same way as bugfixes, but always use the master branch to create the pull request against.
17
18General
19---
20For each pull request, please add appropriate unit tests for your changes. Please stick to PSR2 coding style guidelines.
21We have added two handy shortcuts to run tests and code sniffer: ```composer tests && composer sniff```
22