Skip to content

Commit be34ee5

Browse files
feat: support laravel 12
1 parent 8ecce78 commit be34ee5

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,22 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
php: [ 8.1, 8.2, 8.3 ]
17-
laravel: [ 10.*, 11.* ]
16+
php: [ 8.1, 8.2, 8.3, 8.4 ]
17+
laravel: [ 10.*, 11.*, 12.* ]
1818
stability: [ prefer-stable ]
1919
experimental: [ false ]
2020
include:
2121
- laravel: 10.*
2222
testbench: 8.*
2323
- laravel: 11.*
2424
testbench: 9.*
25+
- laravel: 12.*
26+
testbench: 10.*
2527
exclude:
2628
- php: 8.1
2729
laravel: 11.*
30+
- php: 8.1
31+
laravel: 12.*
2832

2933

3034
name: PHP ${{ matrix.php }} - L${{ matrix.laravel }}

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@
3333
"php": ">=8.1",
3434
"jumbojett/openid-connect-php": "^1.0.2",
3535
"guzzlehttp/guzzle": "^7.5",
36-
"illuminate/contracts": "^10.0||^11.0",
36+
"illuminate/contracts": "^10.0||^11.0||^12.0",
3737
"web-token/jwt-library": "^3.4"
3838
},
3939
"require-dev": {
40-
"orchestra/testbench": "^8.0||^9.0",
41-
"phpunit/phpunit": "^10.0",
40+
"orchestra/testbench": "^8.0||^9.0||^10.0",
41+
"phpunit/phpunit": "^10.0||^11.0||^12.0",
4242
"vimeo/psalm": "^5.8",
4343
"phpstan/phpstan": "^1.10",
4444
"squizlabs/php_codesniffer": "^3.8",

0 commit comments

Comments
 (0)