Skip to content

Commit 57141a0

Browse files
Laravel 12.x Compatibility (#34)
1 parent 827c46c commit 57141a0

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/run-tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,22 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
php: [8.0, 8.1, '8.2']
19-
laravel: ['8.*', '9.*', '10.*', '11.*']
19+
laravel: ['8.*', '9.*', '10.*', '11.*', '12.*']
2020
stability: [prefer-lowest, prefer-stable]
2121
include:
2222
- laravel: 8.*
2323
- laravel: 9.*
2424
- laravel: 11.*
25+
- laravel: 12.*
2526
exclude:
2627
- laravel: 11.*
2728
php: 8.0
2829
- laravel: 11.*
2930
php: 8.1
31+
- laravel: 12.*
32+
php: 8.0
33+
- laravel: 12.*
34+
php: 8.1
3035

3136
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
3237

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@
2020
],
2121
"require": {
2222
"php": "^8.0",
23-
"laravel/framework": "^8.70|^9.0|^10.0|^11.0",
23+
"laravel/framework": "^8.70|^9.0|^10.0|^11.0|^12.0",
2424
"phpunit/phpunit": "^9.5|^10.0|^11.0",
2525
"sixlive/json-schema-assertions": "^2.0"
2626
},
2727
"require-dev": {
2828
"friendsofphp/php-cs-fixer": "^3.2",
29-
"orchestra/testbench": "^6.20|^8.0|^9.0"
29+
"orchestra/testbench": "^6.20|^8.0|^9.0|^10.0"
3030
},
3131
"autoload": {
3232
"psr-4": {

0 commit comments

Comments
 (0)