Skip to content

Commit 9ae643d

Browse files
committed
Create CONTRIBUTING.md
1 parent 8516e30 commit 9ae643d

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

CONTRIBUTING.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Contributing
2+
3+
Contributions are welcome, and are accepted via pull requests.
4+
Please review these guidelines before submitting any pull requests.
5+
6+
## Process
7+
8+
1. Fork the project
9+
2. Create a new branch
10+
3. Code, test, commit and push
11+
12+
## Guidelines
13+
14+
* Send a coherent commit history, making sure each individual commit in your pull request is meaningful.
15+
* You may need to [rebase](https://git-scm.com/book/en/v2/Git-Branching-Rebasing) to avoid merge conflicts.
16+
* Please remember that we follow [SemVer](http://semver.org).
17+
18+
## Setup
19+
20+
Clone your fork, then install the dev dependencies :
21+
22+
```bash
23+
composer install
24+
```
25+
26+
## Coding Style
27+
28+
Please ensure the coding style running :
29+
30+
```bash
31+
composer format
32+
```
33+
34+
## Tests
35+
36+
Run all tests :
37+
38+
```bash
39+
composer test
40+
```

0 commit comments

Comments
 (0)