Skip to content

Commit 7746a46

Browse files
authored
Adds Laravel 12.x Support (#31)
* Adds Laravel 12.x Support * Require minimum PHP 8.3 * Require minimum PHP 8.3
1 parent 5a01fc0 commit 7746a46

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

.github/workflows/run-tests.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,16 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ubuntu-latest]
11-
php: [8.4, 8.3, 8.2, 8.1]
12-
laravel: [11.*, 10.*]
11+
php: [8.3, 8.4]
12+
laravel: [10.*, 11.*, 12.*]
1313
dependency-version: [prefer-lowest, prefer-stable]
14-
exclude:
15-
- laravel: 11.*
16-
php: 8.1
1714
include:
18-
- laravel: 11.*
19-
testbench: ^9.0
2015
- laravel: 10.*
2116
testbench: ^8.0
17+
- laravel: 11.*
18+
testbench: ^9.0
19+
- laravel: 12.*
20+
testbench: ^10.0
2221

2322
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
2423

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@
1818
}
1919
],
2020
"require": {
21-
"php": "^8.1",
21+
"php": "^8.3",
2222
"consoletvs/charts": "^6.6.0",
2323
"spatie/laravel-dashboard": "^3.0"
2424
},
2525
"require-dev": {
2626
"mockery/mockery": "^1.4",
27-
"orchestra/testbench": "^8.0|^9.0",
28-
"phpunit/phpunit": "^10.5"
27+
"orchestra/testbench": "^8.0|^9.0|^10.0",
28+
"phpunit/phpunit": "^10.5|^11.5.3"
2929
},
3030
"autoload": {
3131
"psr-4": {

0 commit comments

Comments
 (0)