Skip to content

Commit

Permalink
Add php 8.2 support (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
rawilk authored Mar 20, 2023
1 parent 28d5de2 commit bb9a280
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.1, 8.0]
php: [8.2, 8.1, 8.0]
laravel: [10.*, 9.*, 8.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
Expand All @@ -27,6 +27,11 @@ jobs:
exclude:
- laravel: 10.*
php: 8.0
- laravel: 9.*
php: 8.2
dependency-version: prefer-lowest
- laravel: 8.*
php: 8.2

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
}
],
"require": {
"php": "^8.0|^8.1",
"php": "^8.0|^8.1|^8.2",
"ext-simplexml": "*",
"illuminate/contracts": "^8.0|^9.0|^10.0",
"illuminate/http": "^8.0|^9.0|^10.0",
Expand Down

0 comments on commit bb9a280

Please sign in to comment.