Skip to content

Commit b44393a

Browse files
committed
sync
1 parent 7585f6e commit b44393a

6 files changed

Lines changed: 58 additions & 51 deletions

File tree

.github/CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
## Berkontribusi ke Rakit
1+
## Berkontribusi ke rakit
22

3-
- [Laporkan masalah](http://github.com/esyede/rakit/issues)
4-
- [Berbagi saran atau masukan](http://rakit.esyede.my.id/forum)
5-
- [Berkontribusi pada source-code](http://github.com/esyede/rakit/pulls)
3+
- [Laporkan masalah](https://github.com/esyede/rakit/issues)
4+
- [Beri saran atau masukan](https://github.com/esyede/rakit/discussions)
5+
- [Kirim pull request](https://github.com/esyede/rakit/pulls)

.github/ISSUE_TEMPLATE

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44

55

6-
### Informasi tambahan
6+
### Info tambahan
77

8-
- Versi rakit : -
9-
- Versi php : -
10-
- Webserver : -
8+
- Versi rakit: -
9+
- Versi php: -
10+
- Webserver: -

.github/PULL_REQUEST_TEMPLATE

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,20 @@
22

33

44

5-
### Cara Mencoba
6-
5+
### Cara mencoba
6+
1. ...
7+
2. ...
8+
3. ...
79

810

911
### Ceklis:
1012
Tambahkan `x` pada kotak - kotak yang sesuai.
1113

1214
**Jenis perubahan:**
13-
- [ ] Perbaikan/penambahan fitur tanpa memutus kompatibilitas
14-
- [ ] BC-break (perubahan yang memutus kompatibilitas dengan versi terdahulu)
15+
- [ ] Perbaikan/penambahan fitur tanpa memutus kompatibilitas
16+
- [ ] BC-break (perubahan yang memutus kompatibilitas dengan versi terdahulu)
1517

1618
**Lainnya:**
17-
- [ ] Gaya penulisan kode saya sudah mengikuti standar rakit.
18-
- [ ] Perubahan ini juga memerlukan perubahan pada dokumentasi.
19-
- [ ] Dokumentasi sudah saya perbarui.
19+
- [ ] Gaya penulisan kode saya sudah mengikuti standar rakit.
20+
- [ ] Perubahan ini juga memerlukan perubahan pada dokumentasi.
21+
- [ ] Dokumentasi sudah saya perbarui.

.github/SECURITY.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
Silakan email ke <a href="mailto:suyadi.1992@gmail.com">suyadi.1992@gmail.com</a> untuk
44
melaporkan masalah keamanan apa pun yang anda temukan di rakit framework.
55

6-
JANGAN gunakan github issue atau forum publik karena akan menyebabkan
7-
lebih banyak kerusakan dibandingkan manfaat.
6+
**JANGAN** gunakan github issue atau forum publik karena akan menyebabkan
7+
lebih banyak kerusakan ketimbang manfaat.
88

9-
Harap dicatat bahwa sebagai proyek open-source non-komersial, saat kami
9+
Harap diingat bahwa sebagai proyek open-source non-komersial, saat kami
1010
belum dapat memberikan hadiah untuk celah keamanan yang anda temukan.

.github/workflows/phpcs.yml

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
11
---
22
name: phpcs
33
on:
4-
- push
5-
- pull_request
4+
- push
5+
- pull_request
66
jobs:
7-
build:
8-
runs-on: ubuntu-latest
9-
steps:
10-
- name: checkout
11-
uses: actions/checkout@v4
12-
- name: setup php
13-
uses: shivammathur/setup-php@v2
14-
with:
15-
php-version: "7.2"
16-
extensions: mbstring, simplexml, dom, openssl, curl, gd
17-
- name: get composer cache directory
18-
id: composer-cache
19-
run: echo "directory=$(composer config cache-dir)" >> "$GITHUB_OUTPUT"
20-
- name: cache composer dependencies
21-
uses: actions/cache@v4
22-
with:
23-
path: ${{ steps.composer-cache.outputs.directory }}
24-
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
25-
restore-keys: ${{ runner.os }}-composer-
26-
- name: install dependencies
27-
run: composer install --no-progress --prefer-dist --optimize-autoloader
28-
- name: check php version
29-
run: php -v
30-
- name: download phpcs
31-
run: wget -O phpcs.phar https://cs.symfony.com/download/php-cs-fixer-v2.phar
32-
- name: make phpcs executable
33-
run: chmod +x phpcs.phar
34-
- name: "style: apply coding style"
35-
run: php phpcs.phar fix
36-
- name: remove phpcs
37-
run: rm -f phpcs.phar
7+
build:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: checkout
11+
uses: actions/checkout@v4
12+
- name: setup php
13+
uses: shivammathur/setup-php@v2
14+
with:
15+
php-version: "7.2"
16+
extensions: mbstring, simplexml, dom, openssl, curl, gd
17+
- name: get composer cache directory
18+
id: composer-cache
19+
run: echo "directory=$(composer config cache-dir)" >> "$GITHUB_OUTPUT"
20+
- name: cache composer dependencies
21+
uses: actions/cache@v4
22+
with:
23+
path: ${{ steps.composer-cache.outputs.directory }}
24+
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
25+
restore-keys: ${{ runner.os }}-composer-
26+
- name: install dependencies
27+
run: composer install --no-progress --prefer-dist --optimize-autoloader
28+
- name: check php version
29+
run: php -v
30+
- name: download phpcs
31+
run: wget -O phpcs.phar https://cs.symfony.com/download/php-cs-fixer-v2.phar
32+
- name: make phpcs executable
33+
run: chmod +x phpcs.phar
34+
- name: "style: apply coding style"
35+
run: php phpcs.phar fix
36+
- name: remove phpcs
37+
run: rm -f phpcs.phar

composer.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,11 @@
5656
]
5757
},
5858
"config": {
59+
"audit": {
60+
"ignore": [
61+
"PKSA-z3gr-8qht-p93v"
62+
]
63+
},
5964
"optimize-autoloader": true,
6065
"preferred-install": "dist",
6166
"allow-plugins": {

0 commit comments

Comments
 (0)