Skip to content

Commit d4e620f

Browse files
committed
1.0.0
- Initial release
0 parents  commit d4e620f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+1961
-0
lines changed

.editorconfig

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# This file is for unifying the coding style for different editors and IDEs
2+
# editorconfig.org
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
end_of_line = lf
9+
insert_final_newline = true
10+
trim_trailing_whitespace = true
11+
12+
[*.php]
13+
indent_size = 4
14+
15+
[*.md,*.txt]
16+
trim_trailing_whitespace = false
17+
insert_final_newline = false
18+
19+
[composer.json]
20+
indent_size = 4

.gitattributes

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Git
2+
/.github export-ignore
3+
.gitattributes export-ignore
4+
.gitignore export-ignore
5+
6+
# Tests
7+
/tests export-ignore
8+
phpunit.xml.dist export-ignore
9+
10+
# Others
11+
.editorconfig export-ignore
12+
.prettierrc export-ignore
13+
CHANGELOG-* export-ignore
14+
CHANGELOG export-ignore
15+
CHANGELOG.md export-ignore
16+
README.md export-ignore

.github/assets/banner.jpg

233 KB
Loading

.github/assets/banner.png

153 KB
Loading

.github/assets/isotype.svg

Lines changed: 5 additions & 0 deletions
Loading

.github/assets/logo-dark.svg

Lines changed: 6 additions & 0 deletions
Loading

.github/assets/logo-light.svg

Lines changed: 5 additions & 0 deletions
Loading

.github/assets/logo.svg

Lines changed: 6 additions & 0 deletions
Loading

.github/assets/preview.jpg

128 KB
Loading

.github/workflows/tests.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Tests
2+
3+
on: ['push', 'pull_request']
4+
5+
jobs:
6+
test:
7+
runs-on: ${{ matrix.os }}
8+
strategy:
9+
fail-fast: true
10+
matrix:
11+
os: [ubuntu-latest]
12+
php: [8.2, 8.3, 8.4]
13+
14+
name: P${{ matrix.php }} - ${{ matrix.os }}
15+
16+
steps:
17+
- name: Checkout code
18+
uses: actions/checkout@v4
19+
20+
- name: Setup PHP
21+
uses: shivammathur/setup-php@v2
22+
with:
23+
php-version: ${{ matrix.php }}
24+
tools: composer:v2
25+
extensions: ctype, dom, curl, filter, hash, iconv, json, libxml, mbstring, openssl, SimpleXML, zip, pcntl, bcmath, soap, intl, gd, exif, imagick, fileinfo
26+
coverage: none
27+
28+
- name: Install dependencies
29+
run: composer install --no-interaction --prefer-dist --optimize-autoloader
30+
31+
- name: Tests
32+
run: ./vendor/bin/pest

0 commit comments

Comments
 (0)