Skip to content

Commit

Permalink
Merge pull request #46 from laravel-shift/l10-compatibility
Browse files Browse the repository at this point in the history
Laravel 10.x Compatibility
  • Loading branch information
freekmurze committed Jan 17, 2023
2 parents 59968a8 + 97838e3 commit 3d0453c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/run-tests.yml
Expand Up @@ -10,9 +10,11 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.2, 8.1]
laravel: [9.*]
laravel: [9.*, 10.*]
stability: [prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 7.*

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Expand Up @@ -16,14 +16,14 @@
}
],
"require": {
"php" : "^8.1",
"php": "^8.1",
"spatie/url-signer": "^2.0",
"illuminate/support": "^9.0",
"illuminate/support": "^9.0|^10.0",
"spatie/laravel-package-tools": "^1.13.6"
},
"require-dev": {
"orchestra/testbench": "^7.12.1",
"pestphp/pest": "^1.22.2"
"orchestra/testbench": "^7.12.1|^8.0",
"pestphp/pest": "^1.22.2|^1.22"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 3d0453c

Please sign in to comment.