Skip to content

Commit ea3e0a5

Browse files
committed
Add support for Laravel 8
1 parent 43d54e0 commit ea3e0a5

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,14 @@ matrix:
55
include:
66
- php: 7.2
77
env: ILLUMINATE_VERSION=6.* TESTBENCH_VERSION=4.*
8+
- php: 7.3
9+
env: ILLUMINATE_VERSION=8.* TESTBENCH_VERSION=6.*
810
- php: 7.3
911
env: ILLUMINATE_VERSION=7.* TESTBENCH_VERSION=5.*
1012
- php: 7.3
1113
env: ILLUMINATE_VERSION=6.* TESTBENCH_VERSION=4.*
14+
- php: 7.4
15+
env: ILLUMINATE_VERSION=8.* TESTBENCH_VERSION=6.*
1216
- php: 7.4
1317
env: ILLUMINATE_VERSION=7.* TESTBENCH_VERSION=5.*
1418
- php: 7.4

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to `Flash` will be documented in this file.
44

5+
## 2.2.0 (2020-09-07)
6+
7+
- Add support for Laravel 8
8+
59
## 2.1.0 (2020-03-03)
610

711
- Add support for Laravel 7

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
],
1818
"require": {
1919
"php": "^7.2",
20-
"illuminate/session": "^6.0|^7.0",
21-
"illuminate/support": "^6.0|^7.0"
20+
"illuminate/session": "^6.0|^7.0|^8.0",
21+
"illuminate/support": "^6.0|^7.0|^8.0"
2222
},
2323
"require-dev": {
24-
"orchestra/testbench": "^4.0|^5.0",
24+
"orchestra/testbench": "^4.0|^5.0|^6.0",
2525
"phpunit/phpunit": "^8.0|^9.0"
2626
},
2727
"scripts": {
@@ -55,6 +55,6 @@
5555
"sort-packages": true,
5656
"optimize-autoloader": true
5757
},
58-
"minimum-stability": "stable",
58+
"minimum-stability": "dev",
5959
"prefer-stable": true
6060
}

0 commit comments

Comments
 (0)