Skip to content

Commit fa9d4b5

Browse files
committed
build(deps): add support for Laravel 12
1 parent 3cefca5 commit fa9d4b5

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/tests.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,20 @@ jobs:
1111
fail-fast: true
1212
matrix:
1313
php: [8.1, 8.2, 8.3]
14-
laravel: [10.*, 11.*]
14+
laravel: [10.*, 11.*, 12.*]
1515
dependency-version: [prefer-lowest, prefer-stable]
1616
exclude:
1717
- php: 8.1
1818
laravel: 11.*
19+
- php: 8.1
20+
laravel: 12.*
1921
include:
2022
- laravel: 10.*
2123
testbench: 8.*
2224
- laravel: 11.*
2325
testbench: 9.*
26+
- laravel: 12.*
27+
testbench: 10.*
2428

2529
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2630

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
"require": {
1919
"php": "^8.1",
2020
"exolnet/laravel-html-list": "^3.0",
21-
"illuminate/support": "^10.0|^11.0"
21+
"illuminate/support": "^10.0|^11.0|^12.0"
2222
},
2323
"require-dev": {
2424
"exolnet/phpcs-config": "^2.0",
2525
"mockery/mockery": "^1.5.1",
26-
"orchestra/testbench": "^8.0|^9.0",
27-
"phpunit/phpunit": "^10.5",
26+
"orchestra/testbench": "^8.0|^9.0|^10.0",
27+
"phpunit/phpunit": "^10.5|^11.5.3",
2828
"squizlabs/php_codesniffer": "^3.7.1"
2929
},
3030
"autoload": {

0 commit comments

Comments
 (0)