Skip to content

Commit

Permalink
Merge pull request #101 from laravel-shift/l9-compatibility
Browse files Browse the repository at this point in the history
Laravel 9.x Compatibility
  • Loading branch information
JustSteveKing authored Feb 3, 2022
2 parents 274bc9e + 722c7ab commit 8d2afc7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.4, 8.0]
laravel: [8.*]
php: [8.0]
laravel: [9.*]
dependency-version: [prefer-stable]
include:
- laravel: 8.*
testbench: 6.*
- laravel: 9.*
testbench: 7.*

name: PHP ${{ matrix.php }} - LARAVEL ${{ matrix.laravel }} - ${{ matrix.dependency-version }}

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
}
],
"require": {
"php": "^7.4|^8.0",
"illuminate/database": "^8.0",
"illuminate/events": "^8.0"
"php": "^8.0",
"illuminate/database": "^9.0",
"illuminate/events": "^9.0"
},
"require-dev": {
"orchestra/testbench": "^6.0",
"phpunit/phpunit": "^8.5"
"orchestra/testbench": "^7.0",
"phpunit/phpunit": "^9.5.10"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 8d2afc7

Please sign in to comment.