Skip to content

Commit

Permalink
Merge pull request #3 from fulopattila122/develop
Browse files Browse the repository at this point in the history
Added PHP 8.3 Support
  • Loading branch information
ricardoboss authored Nov 28, 2023
2 parents 2b5910b + eb6de75 commit 505b746
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,21 @@ on:

jobs:
test:
name: Run Unit Tests
name: Run Unit Tests ${{ matrix.php }}
runs-on: ubuntu-latest
strategy:
matrix:
php: [ '8.1', '8.2', '8.3' ]
steps:
- uses: actions/checkout@v2

- name: Install PHP ${{ matrix.php }}
uses: shivammathur/setup-php@master
with:
php-version: ${{ matrix.php }}
extensions: mbstring
tools: composer:v2

- name: Validate composer.json and composer.lock
run: composer validate --strict

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
}
],
"require": {
"php": "^8.1 <8.3",
"php": "^8.1 <8.4",
"jetbrains/phpstorm-attributes": "^1.0"
},
"require-dev": {
Expand Down
4 changes: 2 additions & 2 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 505b746

Please sign in to comment.