Skip to content

Commit

Permalink
Support Laravel 10
Browse files Browse the repository at this point in the history
  • Loading branch information
mdpoulter committed Feb 15, 2023
1 parent dddedb8 commit 7ec94f0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,15 @@ jobs:
fail-fast: true
matrix:
os: [ ubuntu-latest ]
php: [ 8.0, 8.1 ]
laravel: [ "^9.0" ]
php: [ 8.0, 8.1, 8.2 ]
laravel: [ "^9.0", "^10.0" ]
enum: [ "^5.0", "^6.0" ]
stability: [ prefer-lowest, prefer-stable ]
include:
- laravel: "^9.0"
testbench: "^7.0"
- laravel: "^10.0"
testbench: "^8.0"

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

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@
"require": {
"php": "^8.0",
"bensampo/laravel-enum": "^5.0|^6.0",
"illuminate/support": "^9.0",
"illuminate/support": "^9.0|^10.0",
"laravel/nova": "^4.0"
},
"require-dev": {
"joshgaber/novaunit": "^3.0",
"laravel/pint": "^1.2",
"mockery/mockery": "^1.3.3",
"nunomaduro/collision": "^6.1",
"orchestra/testbench": "^7.0",
"nunomaduro/collision": "^6.1|^7.0",
"orchestra/testbench": "^7.0|^8.0",
"phpunit/phpunit": "^9.3.3",
"symfony/var-dumper": "^6.0"
},
Expand Down

0 comments on commit 7ec94f0

Please sign in to comment.