Skip to content

Commit

Permalink
Merge pull request #16 from eXolnet/feature/php83-support
Browse files Browse the repository at this point in the history
ci: test PHP 8.3 support and Add Laravel 11 support
  • Loading branch information
Gandhi11 authored May 6, 2024
2 parents 11dde59 + d169c0f commit 40414bb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,17 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.1, 8.2]
laravel: [10.*]
php: [8.1, 8.2, 8.3]
laravel: [10.*, 11.*]
dependency-version: [prefer-lowest, prefer-stable]
exclude:
- php: 8.1
laravel: 11.*
include:
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*

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

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@
],
"require": {
"php": "^8.1",
"illuminate/support": "^10.0",
"illuminate/support": "^10.0|^11.0",
"spatie/laravel-html": "^3.2"
},
"require-dev": {
"exolnet/phpcs-config": "^2.0",
"mockery/mockery": "^1.5.1",
"orchestra/testbench": "^7.0|^8.0",
"orchestra/testbench": "^8.0|^9.0",
"phpunit/phpunit": "^10.5",
"squizlabs/php_codesniffer": "^3.6"
},
Expand Down

0 comments on commit 40414bb

Please sign in to comment.