This repository has been archived by the owner on Mar 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 75
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
paramtamtam
committed
Jun 24, 2018
1 parent
eb965e5
commit bf3c657
Showing
6 changed files
with
92 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 |
---|---|---|
|
@@ -22,6 +22,7 @@ storage/*.cache | |
**/.gitignore | ||
.git | ||
.gitattributes | ||
.github | ||
|
||
# Docker | ||
.dockerignore | ||
|
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,41 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
|
||
--- | ||
|
||
## Describe the bug | ||
|
||
> A clear and concise description of what the bug is. | ||
### Expected behaviour | ||
|
||
> Tell us what should happen. | ||
### Actual behaviour | ||
|
||
> Tell us what happens instead. | ||
### Steps to reproduce the behavior: | ||
|
||
> Put some code example: | ||
> | ||
> ```php | ||
> $some = new \stdClass(); | ||
> echo $some; | ||
> | ||
> PHP Catchable fatal error: Object of class stdClass could not be converted to string in Command line code on line 2 | ||
> PHP Stack trace: | ||
> PHP 1. {main}() Command line code:0 | ||
> ``` | ||
## System information | ||
> Please, complete the following information: | ||
- PHP version(s): [e.g. `7.2.6`] | ||
- Package version(s): [e.g. `1.0.1`] | ||
## Additional context | ||
> Add any other context about the problem here. |
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,17 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this package | ||
|
||
--- | ||
|
||
### Is your feature request related to a problem? | ||
|
||
> A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
### Describe the solution you'd like | ||
|
||
> A clear and concise description of what you want to happen. | ||
## Additional context | ||
|
||
> Add any other context about the feature request here. |
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,7 @@ | ||
--- | ||
name: Question | ||
about: Ask anything | ||
|
||
--- | ||
|
||
> If you have any questions feel free to ask |
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,25 @@ | ||
| Q | A | ||
| ------------- | --- | ||
| Bug fix? | Yes or No | ||
| New feature? | Yes or No | ||
|
||
## Description | ||
|
||
> Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. | ||
Fixes # (issue) | ||
|
||
## Checklist | ||
|
||
- [ ] My code follows the style guidelines of this project | ||
- [ ] I have performed a self-review of my own code | ||
- [ ] I have commented my code, particularly in hard-to-understand areas | ||
- [ ] I wrote unit tests for my code | ||
- [ ] I have made changes in [CHANGELOG.md](https://github.com/tarampampam/mikrotik-hosts-parser/blob/master/CHANGELOG.md) file | ||
|
||
> About your changes in `CHANGELOG.md`: | ||
> | ||
> * Add new version header like `## v1.x.x`, if it does not exists | ||
> * Add description under `added`/`changed`/`fixed` sections | ||
> * Add reference to closed issues `[#000]` | ||
> * Add link to issue in the end of document |