Skip to content

Commit

Permalink
Merge pull request #47 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 24, 2023
2 parents 032bf6a + dc0b6e0 commit 85246e2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,20 @@ jobs:
matrix:
os: [ubuntu-latest]
php: [8.2, 8.1, 8.0, 7.4]
laravel: [9.*, 8.*]
laravel: [9.*, 8.*, 10.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: ^8.0
- laravel: 9.*
testbench: ^7.0
- laravel: 8.*
testbench: ^6.23
exclude:
- laravel: 10.*
php: 8.0
- laravel: 10.*
php: 7.4
- laravel: 9.*
php: 7.4

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
],
"require": {
"php": "^7.4|^8.0",
"illuminate/contracts": "^8.73|^9.0",
"illuminate/http": "^8.73|^9.0",
"illuminate/support": "^8.73|^9.0"
"illuminate/contracts": "^8.73|^9.0|^10.0",
"illuminate/http": "^8.73|^9.0|^10.0",
"illuminate/support": "^8.73|^9.0|^10.0"
},
"require-dev": {
"orchestra/testbench": "^6.23|^7.0",
"orchestra/testbench": "^6.23|^7.0|^8.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
Expand Down Expand Up @@ -50,4 +50,4 @@
},
"minimum-stability": "dev",
"prefer-stable": true
}
}

0 comments on commit 85246e2

Please sign in to comment.