Skip to content

Commit

Permalink
Add Support for Laravel 10 (#45)
Browse files Browse the repository at this point in the history
* Update Version Constraints

* Update CI
  • Loading branch information
stefanzweifel authored Feb 4, 2023
1 parent 221c17c commit 4d83068
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,24 @@ jobs:
matrix:
os: [ubuntu-latest]
php: [8.0, 8.1, 8.2]
laravel: [8.*, 9.*]
laravel: [8.*, 9.*, 10.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 8.*
testbench: ^6.23
- laravel: 9.*
testbench: ^7.0
- laravel: 10.*
testbench: ^8.0
exclude:
- laravel: 8.*
stability: prefer-lowest
- laravel: 9.*
stability: prefer-lowest
- laravel: 10.*
stability: prefer-lowest
- laravel: 10.*
php: 8.0

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@
"require": {
"php": "^8.0",
"hammerstone/sidecar": "^0.3.7",
"illuminate/contracts": "^8.0|^9.0",
"illuminate/contracts": "^8.0|^9.0|^10.0",
"spatie/browsershot": "^3.52",
"spatie/laravel-package-tools": "^1.9.2"
},
"require-dev": {
"league/flysystem-aws-s3-v3": "^1.0|^2.0|^3.0",
"nunomaduro/collision": "^5.10|^6.0",
"nunomaduro/larastan": "^1.0|^2.0",
"orchestra/testbench": "^6.22|^7.0",
"orchestra/testbench": "^6.22|^7.0|^8.0",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.1",
"phpstan/extension-installer": "^1.1",
Expand Down

0 comments on commit 4d83068

Please sign in to comment.