Skip to content

Commit 0269331

Browse files
authored
add support for Laravel 12 (#1338)
1 parent b089abe commit 0269331

File tree

3 files changed

+23
-15
lines changed

3 files changed

+23
-15
lines changed

.github/workflows/run-tests.yml

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,10 @@ jobs:
99
strategy:
1010
fail-fast: true
1111
matrix:
12-
php: [7.3, 7.4, 8.0, 8.1, 8.2, 8.3]
13-
laravel: [7.*, 8.*, 9.*, 10.*, 11.*]
12+
php: [7.3, 7.4, 8.0, 8.1, 8.2, 8.3, 8.4]
13+
laravel: [8.*, 9.*, 10.*, 11.*, 12.*]
1414
stability: [prefer-lowest, prefer-stable]
1515
include:
16-
- laravel: 7.*
17-
testbench: 5.20.*
1816
- laravel: 8.*
1917
testbench: 6.22.*
2018
- laravel: 9.*
@@ -23,27 +21,29 @@ jobs:
2321
testbench: 8.*
2422
- laravel: 11.*
2523
testbench: 9.*
24+
- laravel: 12.*
25+
testbench: 10.*
2626
exclude:
27-
- laravel: 7.*
28-
php: 8.1
29-
- laravel: 7.*
30-
php: 8.2
31-
- laravel: 7.*
32-
php: 8.3
3327
- laravel: 8.*
3428
php: 8.2
3529
- laravel: 8.*
3630
php: 8.3
31+
- laravel: 8.*
32+
php: 8.4
3733
- laravel: 9.*
3834
php: 7.3
3935
- laravel: 9.*
4036
php: 7.4
37+
- laravel: 9.*
38+
php: 8.4
4139
- laravel: 10.*
4240
php: 7.3
4341
- laravel: 10.*
4442
php: 7.4
4543
- laravel: 10.*
4644
php: 8.0
45+
- laravel: 10.*
46+
php: 8.4
4747
- laravel: 11.*
4848
php: 7.3
4949
- laravel: 11.*
@@ -52,6 +52,14 @@ jobs:
5252
php: 8.0
5353
- laravel: 11.*
5454
php: 8.1
55+
- laravel: 12.*
56+
php: 7.3
57+
- laravel: 12.*
58+
php: 7.4
59+
- laravel: 12.*
60+
php: 8.0
61+
- laravel: 12.*
62+
php: 8.1
5563

5664
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }}
5765

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ All documentation is available at [Laravel-AdminLTE Documentation](https://jeroe
2626

2727
The current package requirements are:
2828

29-
- Laravel >= 7.x
30-
- PHP >= 7.2.5
29+
- Laravel >= 8.x
30+
- PHP >= 7.3
3131

3232

3333
## Issues, Questions and Pull Requests

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@
2828
}
2929
},
3030
"require": {
31-
"laravel/framework": ">=7.0",
32-
"php": ">=7.2.5",
31+
"laravel/framework": ">=8.0",
32+
"php": ">=7.3",
3333
"almasaeed2010/adminlte": "3.2.*"
3434
},
3535
"require-dev": {
3636
"phpunit/phpunit": ">=9.1",
37-
"orchestra/testbench": ">=4.0"
37+
"orchestra/testbench": ">=6.0"
3838
}
3939
}

0 commit comments

Comments
 (0)