Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
branches:
- main
pull_request:
branches:
- laravel-13-support
Comment thread
myckhel marked this conversation as resolved.
Outdated

jobs:
tests:
Expand All @@ -22,6 +24,9 @@ jobs:
- laravel: "12.*"
testbench: "10.*"
php: "8.3"
- laravel: "13.*"
testbench: "11.*"
php: "8.4"

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

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
}
],
"require": {
"illuminate/support": "^10.0|^11.0|^12.0"
"illuminate/support": "^10.0|^11.0|^12.0|^13.0"
},
Comment thread
myckhel marked this conversation as resolved.
Comment thread
myckhel marked this conversation as resolved.
"autoload": {
"psr-4": {
Expand All @@ -39,6 +39,6 @@
}
},
"require-dev": {
"orchestra/testbench": "^8.0|^9.0|^10.0"
"orchestra/testbench": "^8.0|^9.0|^10.0|^11.0"
}
}