File tree 1 file changed +47
-0
lines changed
1 file changed +47
-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
+ 1 . Create a new branch
10
+ 1 . Code, test, commit and push
11
+ 1 . Open a pull request detailing your changes.
12
+
13
+ ## Guidelines
14
+
15
+ * Please ensure the coding style running ` composer lint ` .
16
+ * Send a coherent commit history, making sure each individual commit in your pull request is meaningful.
17
+ * You may need to [ rebase] ( https://git-scm.com/book/en/v2/Git-Branching-Rebasing ) to avoid merge conflicts.
18
+ * Please remember that we follow [ SemVer] ( http://semver.org/ ) .
19
+
20
+ ## Setup
21
+
22
+ Clone your fork, then install the dev dependencies:
23
+ ``` bash
24
+ composer install
25
+ ```
26
+ ## Lint
27
+
28
+ Lint your code:
29
+ ``` bash
30
+ composer lint
31
+ ```
32
+ ## Tests
33
+
34
+ Run all tests:
35
+ ``` bash
36
+ composer test
37
+ ```
38
+
39
+ Check types:
40
+ ``` bash
41
+ composer test:types
42
+ ```
43
+
44
+ Unit tests:
45
+ ``` bash
46
+ composer test:unit
47
+ ```
You can’t perform that action at this time.
0 commit comments