mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-20 15:08:11 +01:00
e34a9b43cf
This file will be linked to when submitting a pull request on Github. Also, Github will notify contributors when it changes. There might be more features I do not know about.
20 lines
366 B
Markdown
20 lines
366 B
Markdown
# How to Contribute
|
|
|
|
Just follow 3 rules:
|
|
|
|
- **1 feature per pull-request**
|
|
- **New features need tests**
|
|
- Tests, coding standards and PHPStan **checks must pass**:
|
|
|
|
```bash
|
|
composer complete-check
|
|
```
|
|
|
|
Do you need to fix coding standards? Run:
|
|
|
|
```bash
|
|
composer fix-cs
|
|
```
|
|
|
|
We would be happy to accept PRs that follow these guidelines.
|