2021-05-19 23:43:23 +00:00
|
|
|
## How to Contribute
|
2020-03-21 12:00:05 +01:00
|
|
|
|
2021-05-19 23:43:23 +00:00
|
|
|
Contributions here are more than welcomed! You can contribute to [rector-src](https://github.com/rectorphp/rector-src) repository.
|
|
|
|
|
|
|
|
There 3 rules will highly increase changes to get your PR merged:
|
2020-03-21 12:00:05 +01:00
|
|
|
|
|
|
|
- **1 feature per pull-request**
|
2021-05-19 23:43:23 +00:00
|
|
|
- **new features need tests**
|
|
|
|
- CI must pass... you can mimic it locally by running
|
2020-03-21 12:00:05 +01:00
|
|
|
|
|
|
|
```bash
|
|
|
|
composer complete-check
|
|
|
|
```
|
|
|
|
|
2021-05-19 23:43:23 +00:00
|
|
|
- Do you need to fix coding standards?
|
2020-03-21 12:00:05 +01:00
|
|
|
|
|
|
|
```bash
|
|
|
|
composer fix-cs
|
|
|
|
```
|
|
|
|
|
2021-05-19 23:43:23 +00:00
|
|
|
We would be happy to accept PRs that follow these guidelines.
|