Skip to content

Commit

Permalink
add laravel 11 support (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
lepikhinb authored Oct 24, 2024
1 parent 96407f6 commit 56099b8
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,18 @@ jobs:
fail-fast: true
matrix:
php: [ 8.1, 8.2 ]
laravel: [ 9, 10 ]
laravel: [ 9, 10, 11 ]
stability: [ 'prefer-lowest', 'prefer-stable' ]
include:
- laravel: 9.*
testbench: ^8.20
- laravel: 10.*
testbench: ^8.20
- laravel: 11.*
testbench: ^9.0
exclude:
- php: 8.1
laravel: 11.*

name: PHP ${{ matrix.php }} L${{ matrix.laravel }} w/ ${{ matrix.stability }}
steps:
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
},
"require": {
"php": "~8.1.0|~8.2.0",
"illuminate/http": "^9.33|^10.0",
"illuminate/support": "^9.33|^10.0"
"illuminate/http": "^9.33|^10.0|^11.0",
"illuminate/support": "^9.33|^10.0|^11.0"
},
"require-dev": {
"nunomaduro/larastan": "^2.0",
"orchestra/testbench": "^7.0|^8.0",
"orchestra/testbench": "^7.0|^8.0|^9.0",
"phpunit/phpunit": "^9.5.10",
"roave/security-advisories": "dev-latest"
},
Expand All @@ -36,4 +36,4 @@
},
"minimum-stability": "dev",
"prefer-stable": true
}
}

0 comments on commit 56099b8

Please sign in to comment.