-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/1.0.0-alpha.17'
- Loading branch information
Showing
3 changed files
with
75 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# CONTRIBUTING | ||
|
||
Contributions are welcome, and are accepted via pull requests. | ||
Please review these guidelines before submitting any pull requests. | ||
|
||
## Process | ||
|
||
1. Fork the project | ||
1. Create a new branch | ||
1. Code, test, commit and push | ||
1. Open a pull request detailing your changes. Make sure to follow the [template](.github/PULL_REQUEST_TEMPLATE.md) | ||
|
||
## Guidelines | ||
|
||
* Please ensure the coding style running `composer lint`. | ||
* Send a coherent commit history, making sure each individual commit in your pull request is meaningful. | ||
* You may need to [rebase](https://git-scm.com/book/en/v2/Git-Branching-Rebasing) to avoid merge conflicts. | ||
* Please remember that we follow [SemVer](http://semver.org/). | ||
|
||
## Setup | ||
|
||
Clone your fork, then install the dev dependencies: | ||
```bash | ||
composer install | ||
``` | ||
## Lint | ||
|
||
Lint your code: | ||
```bash | ||
composer lint | ||
``` | ||
## Tests | ||
|
||
Run all tests: | ||
```bash | ||
composer test | ||
``` | ||
|
||
Check types: | ||
```bash | ||
composer test:types | ||
``` | ||
|
||
Unit tests: | ||
```bash | ||
composer test:unit | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters