Skip to content

Commit 0e13b13

Browse files
feat: Initial commit
0 parents  commit 0e13b13

File tree

132 files changed

+16230
-0
lines changed

Some content is hidden

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

132 files changed

+16230
-0
lines changed

.github/workflows/tests.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Tests
2+
3+
on: ['push', 'pull_request']
4+
5+
jobs:
6+
ci:
7+
runs-on: ${{ matrix.os }}
8+
9+
strategy:
10+
fail-fast: false
11+
matrix:
12+
os: [ubuntu-latest, macos-latest, windows-latest]
13+
php: [8.1, 8.2, 8.3, 8.4]
14+
max-parallel: 4
15+
16+
name: Tests PHP${{ matrix.php }} - ${{ matrix.os }}
17+
18+
steps:
19+
20+
- name: Checkout
21+
uses: actions/checkout@v4
22+
23+
- name: Cache dependencies
24+
uses: actions/cache@v4
25+
with:
26+
path: ~/.composer/cache/files
27+
key: dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
28+
29+
- name: Setup PHP
30+
uses: shivammathur/setup-php@v2
31+
with:
32+
php-version: ${{ matrix.php }}
33+
coverage: none
34+
35+
- name: Install Composer dependencies
36+
run: composer update --no-interaction --prefer-dist
37+
38+
- name: Run Tests
39+
run: composer test

.gitignore

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
# Composer dependencies
2+
/vendor/
3+
/composer.lock
4+
5+
# PHPUnit
6+
/phpunit.xml
7+
.phpunit.result.cache
8+
9+
# PHP CS Fixer
10+
/.php-cs-fixer.cache
11+
/.php-cs-fixer.php
12+
13+
# Editor directories and files
14+
/.idea
15+
/.vscode
16+
*.sublime-project
17+
*.sublime-workspace
18+
19+
# Operating system files
20+
.DS_Store
21+
Thumbs.db
22+
23+
# Local environment files
24+
/.env
25+
/.env.backup
26+
/.env.local
27+
28+
# PHP CodeSniffer
29+
/.phpcs.xml
30+
/.phpcs.xml.dist
31+
/phpcs.xml
32+
/phpcs.xml.dist
33+
34+
# PHPStan
35+
/phpstan.neon
36+
/phpstan.neon.dist
37+
38+
# Local development tools
39+
/.php_cs
40+
/.php_cs.cache
41+
/.php_cs.dist
42+
/_ide_helper.php
43+
/.php-cs-fixer.php
44+
45+
# Build artifacts
46+
/build/
47+
/coverage/
48+
49+
# PHPUnit coverage reports
50+
/clover.xml
51+
/coverage.xml
52+
/coverage/
53+
54+
# Laravel generated files
55+
bootstrap/cache/
56+
.phpunit.result.cache
57+
58+
# Local Composer dependencies
59+
composer.phar
60+
61+
workbench
62+
playground
63+
64+
# Log files
65+
*.log

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 Kyrian Obikwelu
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.

0 commit comments

Comments
 (0)