Skip to content

Commit 2ee68a9

Browse files
authored
Merge pull request #34 from bilfeldt/features/laravel12
Add Laravel 12 support
2 parents d265721 + 22c56be commit 2ee68a9

File tree

3 files changed

+23
-14
lines changed

3 files changed

+23
-14
lines changed

.github/workflows/run-tests.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,17 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
php: [8.4, 8.3, 8.2, 8.1, 8.0]
19-
laravel: ['11.*', '10.*', '9.*']
18+
php: [8.0, 8.1, 8.2, 8.3, 8.4]
19+
laravel: ['10.*', '11.*', '12.*']
2020
stability: [prefer-stable]
2121
include:
22-
- laravel: 11.*
23-
testbench: 9.*
2422
- laravel: 10.*
2523
testbench: 8.*
26-
- laravel: 9.*
27-
testbench: 7.*
24+
- laravel: 11.*
25+
testbench: 9.*
26+
- laravel: 12.*
27+
testbench: 10.*
2828
exclude:
29-
- laravel: 9.*
30-
php: 8.3
31-
- laravel: 9.*
32-
php: 8.4
3329
- laravel: 10.*
3430
php: 8.0
3531
- laravel: 10.*
@@ -38,6 +34,10 @@ jobs:
3834
php: 8.0
3935
- laravel: 11.*
4036
php: 8.1
37+
- laravel: 12.*
38+
php: 8.0
39+
- laravel: 12.*
40+
php: 8.1
4141

4242
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }}
4343

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
All notable changes to `laravel-flash-message` will be documented in this file.
44

5+
## 1.4.0 - 2025-02-17
6+
7+
- Add Laravel 12 support
8+
9+
## 1.3.0 - 2024-01-27
10+
11+
- Add PHP 8.4 support
12+
- Drop Laravel 8 support
13+
514
## 1.2.0 - 2024-02-28
615

716
- Add Laravel 11 support

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
],
1818
"require": {
1919
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
20-
"illuminate/contracts": "^9.0 || ^10.0 || ^11.0"
20+
"illuminate/contracts": "^9.0 || ^10.0 || ^11.0 || ^12.0"
2121
},
2222
"require-dev": {
23-
"nunomaduro/collision": "^6.0 || ^7.0 || ^8.0",
24-
"orchestra/testbench": "^7.0 || ^8.0 || ^9.0",
25-
"phpunit/phpunit": "^9.0 || ^10.0 || ^11.0"
23+
"nunomaduro/collision": "^7.0 || ^8.0",
24+
"orchestra/testbench": "^8.0 || ^9.0 || ^10.0",
25+
"phpunit/phpunit": "^10.0 || ^11.0"
2626
},
2727
"autoload": {
2828
"psr-4": {

0 commit comments

Comments
 (0)