Skip to content

Commit c49c24c

Browse files
Laravel 12.x Compatibility (#26)
* Bump dependencies for Laravel 12 * Update GitHub Actions for Laravel 12
1 parent 26654e9 commit c49c24c

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/run-tests.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,15 @@ jobs:
1212
fail-fast: true
1313
matrix:
1414
php: [8.4, 8.3, 8.2]
15-
laravel: ["10.*", "11.*"]
15+
laravel: ['10.*', '11.*', '12.*']
1616
dependency-version: [prefer-lowest, prefer-stable]
1717
include:
1818
- laravel: 10.*
1919
testbench: 8.*
2020
- laravel: 11.*
2121
testbench: 9.*
22+
- laravel: 12.*
23+
testbench: 10.*
2224

2325
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2426

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
],
1818
"require": {
1919
"php": "^8.2|^8.3|^8.4",
20-
"illuminate/support": "^10.0|^11.0"
20+
"illuminate/support": "^10.0|^11.0|^12.0"
2121
},
2222
"require-dev": {
23-
"orchestra/testbench": "^8.0|^9.0",
24-
"phpunit/phpunit": "^10.4"
23+
"orchestra/testbench": "^8.0|^9.0|^10.0",
24+
"phpunit/phpunit": "^10.4|^11.5.3"
2525
},
2626
"autoload": {
2727
"psr-4": {
@@ -49,4 +49,4 @@
4949
]
5050
}
5151
}
52-
}
52+
}

0 commit comments

Comments
 (0)