blob: 711fd81a01cd0668f64ce3d4a3ae2cde9999135e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Contributing
## Forking
You should be working in a fork, see the [following documentation](https://help.github.com/articles/fork-a-repo/)
## Before Making Any Changes
### Fetch The Latest Changes from upstream
> On the `master` branch
```sh
$ git fetch --all
$ git rebase upstream/master
```
### Create a New Branch
```sh
$ git checkout -b reason-for-changes
```
### Refresh Dependencies
```sh
$ composer install
```
## Testing Your Changes
In the root directory, you can run the test suite by running:
```sh
$ vendor/bin/phpunit
```
## After Making Your Changes
### Commit Your Changes
```sh
$ git add [files...]
$ git commit -m "DESCRIPTION OF CHANGES"
$ git push origin master
```
## Pushing Changes Back Upstream
To contribute your changes back, simply perform a [Pull Request](https://help.github.com/articles/using-pull-requests/) against the master branch.
|