Skip to content

Commit 6ca20a3

Browse files
committed
chore: add templates, docs and stuffs
1 parent 7c1d0f0 commit 6ca20a3

5 files changed

+168
-0
lines changed

CHANGELOG.md

Whitespace-only changes.

CONTRIBUTING.md

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
## How to contribute
2+
3+
### Before you start
4+
5+
<!-- This section contains conventions/standards contributors must follow -->
6+
<!-- For example: Commit messages should follow angular standard -->
7+
8+
### Setting up
9+
10+
You may need to fork this project in [GitHub](https://github.com/adhocore/htmlup).
11+
12+
```sh
13+
git clone [email protected]:adhocore/htmlup.git
14+
15+
# OR if you have a fork
16+
git clone [email protected]:<your_github_handle>/htmlup.git
17+
18+
# You may also add upstream
19+
git remote add upstream https://github.com/adhocore/htmlup.git
20+
21+
cd htmlup
22+
23+
# Create a new branch
24+
git checkout -b $branch_name
25+
26+
# Install deps
27+
composer install -o
28+
```
29+
30+
### Moving forward
31+
32+
```sh
33+
# Open htmlup in IDE
34+
subl htmlup
35+
36+
# ... and do the needful
37+
38+
# Optionally run the lint
39+
for P in src tests; do find $P -type f -name '*.php' -exec php -l {} \;; done
40+
41+
# ... and phpcs fixer or stuffs like that!
42+
43+
# Run tests
44+
vendor/bin/phpunit --coverage-text
45+
46+
47+
# If your feature takes long your dev branch might be out of sync, you may want to
48+
git checkout $branch_name
49+
git pull upstream master # branch could be something else than master
50+
```
51+
52+
### Finalizing
53+
54+
Everything looking good?
55+
56+
```sh
57+
# Commit your stuffs
58+
git add $file ...$files
59+
git commit -m "..."
60+
61+
# Push 'em
62+
git push origin HEAD
63+
```
64+
65+
Now goto [GitHub](https://github.com/adhocore/htmlup/compare?expand=1), select your branch and create PR.
66+
67+
### Getting PR merged
68+
69+
You have to wait. You have to address change requests. Be patient.
70+
71+
Thank you for contribution!
72+
73+
**Lastly** Please be informed that your works will be licensed same as the project [license](./LICENSE)

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018 Jitendra Adhikari
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

docs/ISSUE_TEMPLATE.md

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
## Introduction
2+
3+
**This is a**
4+
5+
<!-- Put a cross `x` in one of the below boxes -->
6+
- [ ] Bug/Issue
7+
- [ ] Feature request
8+
- [ ] General stuff
9+
10+
<!-- BugStart (Remove this line if reporting bug)
11+
## Describe the bug/issue
12+
13+
I wanted to ...
14+
15+
### What happened
16+
17+
...
18+
19+
### What is expected
20+
21+
...
22+
23+
### Reproduction steps
24+
25+
- ...
26+
27+
### Sample code
28+
29+
30+
### Environment
31+
32+
- OS:
33+
- PHP version:
34+
- htmlup version:
35+
36+
BugEnd (Remove this line if reporting bug) -->
37+
38+
<!-- FeatureStart (Remove this line if requesting feature)
39+
## Explain the feature
40+
41+
42+
FeatureEnd (Remove this line if requesting feature) -->
43+
44+
<!-- GeneralStart (Remove this line if it is general concern)
45+
## Explain yourself
46+
47+
...
48+
49+
GeneralEnd (Remove this line if it is general concern) -->

docs/PULL_REQUEST_TEMPLATE.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
## Introduction
2+
3+
**This is a**
4+
5+
<!-- Put a cross `x` in relevant boxes below -->
6+
- [ ] New feature
7+
- [ ] Fix for ... <!-- (the issue/bug) -->
8+
- [ ] General improvement
9+
- [ ] Backward incompatible change
10+
11+
It closes # <!-- (Put the issue number after `#`) -->
12+
13+
## Describe the change
14+
15+
...
16+
17+
## How to use it
18+
19+
...
20+
21+
#### Sample code
22+
23+
```php
24+
25+
```

0 commit comments

Comments
 (0)