Skip to content

Commit 2fd3220

Browse files
committed
feat: add support for Laravel 13 and PHP 8.4 in CI and dependencies
1 parent 41748cd commit 2fd3220

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/tests.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
branches:
66
- main
77
pull_request:
8+
branches:
9+
- laravel-13-support
810

911
jobs:
1012
tests:
@@ -22,6 +24,9 @@ jobs:
2224
- laravel: "12.*"
2325
testbench: "10.*"
2426
php: "8.3"
27+
- laravel: "13.*"
28+
testbench: "11.*"
29+
php: "8.4"
2530

2631
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
2732

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
}
1414
],
1515
"require": {
16-
"illuminate/support": "^10.0|^11.0|^12.0"
16+
"illuminate/support": "^10.0|^11.0|^12.0|^13.0"
1717
},
1818
"autoload": {
1919
"psr-4": {
@@ -39,6 +39,6 @@
3939
}
4040
},
4141
"require-dev": {
42-
"orchestra/testbench": "^8.0|^9.0|^10.0"
42+
"orchestra/testbench": "^8.0|^9.0|^10.0|^11.0"
4343
}
4444
}

0 commit comments

Comments
 (0)