File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change
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
+ ```
You can’t perform that action at this time.
0 commit comments