Skip to content

Commit 712df49

Browse files
committed
initial work
0 parents  commit 712df49

17 files changed

+2014
-0
lines changed

.editorconfig

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = false
10+
11+
[*.php]
12+
indent_size = 4
13+
14+
[composer.json]
15+
indent_size = 4
16+
17+
[*.md]
18+
trim_trailing_whitespace = false

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
dev/
2+
vendor/

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Changelog
2+
Semua perubahan penting pada proyek ini akan didokumentasikan dalam file ini.
3+
4+
Formatnya didasarkan pada [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
dan proyek ini menganut [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [0.0.1] - TBD
8+
### Added
9+
- function `ribuan`, `romawi`, `rupiah`, `terbilang`
10+
- test `ribuan`, `romawi`, `rupiah`, `terbilang`

LICENSE

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

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# php-helper-id
2+
Kumpulan fungsi bantuan PHP yang digunakan secara umum di Indonesia.
3+
4+
> masih dalam tahap pengembangan.
5+
6+
## Fungsi
7+
* ribuan
8+
* romawi
9+
* rupiah
10+
* terbilang

composer.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"name": "lakuapik/php-helper-id",
3+
"description": "Kumpulan fungsi bantuan PHP yang digunakan secara umum di Indonesia.",
4+
"version": "0.0.1",
5+
"type": "library",
6+
"license": "MIT",
7+
"homepage": "https://github.com/lakuapik/php-helper-id",
8+
"keywords": ["php", "php helper", "php indonesia", "fungsi php indonesia"],
9+
"authors": [
10+
{
11+
"name": "David Adi Nugroho",
12+
"email": "davidadi216@gmail.com"
13+
}
14+
],
15+
"minimum-stability": "stable",
16+
"require": {
17+
"php": ">=5.6"
18+
},
19+
"require-dev": {
20+
"phpunit/phpunit": "^5"
21+
},
22+
"autoload": {
23+
"psr-4": {
24+
"Lakuapik\\": "src/"
25+
},
26+
"files": [
27+
"src/functions.php"
28+
]
29+
},
30+
"autoload-dev": {
31+
"psr-4": {
32+
"Tests\\": "tests/"
33+
}
34+
}
35+
}

0 commit comments

Comments
 (0)