-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 50789a7
Showing
317 changed files
with
47,242 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# How to contribute | ||
|
||
Thanks for considering to contribute this project. All issues and pull requests are highly appreciated. | ||
|
||
## Report Issue | ||
|
||
Reporting an [issue](https://github.com/didi/rdebug/issues) is welcomed. But do please include the following details | ||
|
||
1. Environment (OS version, rdebug version and so on) | ||
2. Issue description, error logs | ||
3. Steps to reproduce | ||
|
||
## Pull Requests | ||
|
||
Before sending pull request to this project, please read and follow guidelines below. | ||
|
||
1. Coding style: PHP follow PSR-2 coding style. | ||
3. Commit message: Use English and be aware of your spell. | ||
4. Test: Make sure to test your code. | ||
|
||
NOTE: We assume all your contribution can be licensed under the [Apache License 2.0](./LICENSE). | ||
|
||
## Run Tests | ||
|
||
To run tests simply run the `phpunit` executable in the `vendor/bin` | ||
|
||
```bash | ||
$ composer install --dev | ||
$ ./vendor/bin/phpunit | ||
``` | ||
|
||
You should get an output similar to this: | ||
|
||
```bash | ||
$ ./vendor/bin/phpunit | ||
PHPUnit 6.5.14 by Sebastian Bergmann and contributors. | ||
|
||
.................SS 19 / 19 (100%) | ||
|
||
Time: 152 ms, Memory: 6.00MB | ||
|
||
OK, but incomplete, skipped, or risky tests! | ||
Tests: 19, Assertions: 28, Skipped: 2. | ||
``` | ||
|
Oops, something went wrong.