Skip to content

Commit a892f2d

Browse files
Add L8 support
1 parent 7840c92 commit a892f2d

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed
File renamed without changes.

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 `laravel-flash` will be documented in this file
44

5+
## 1.7.0 - 2020-09-08
6+
7+
- add support for Laravel 8
8+
59
## 1.6.0 - 2020-03-18
610

711
- add `level` property on `flash()`

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# A lightweight package to flash messages
22

33
[![Latest Version on Packagist](https://img.shields.io/packagist/v/spatie/laravel-flash.svg?style=flat-square)](https://packagist.org/packages/spatie/laravel-flash)
4-
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/spatie/laravel-flash/run-tests?label=tests)
5-
[![Quality Score](https://img.shields.io/scrutinizer/g/spatie/laravel-flash.svg?style=flat-square)](https://scrutinizer-ci.com/g/spatie/laravel-flash)
4+
![Test Status](https://img.shields.io/github/workflow/status/spatie/laravel-flash/run-tests?label=tests)
5+
![Code Style Status](https://img.shields.io/github/workflow/status/spatie/laravel-flash/php-cs-fixer?label=code%20style)
66
[![Total Downloads](https://img.shields.io/packagist/dt/spatie/laravel-flash.svg?style=flat-square)](https://packagist.org/packages/spatie/laravel-flash)
77

88
This is a lightweight package to send flash messages in Laravel apps. A flash message is a message that is carried over to the next request by storing it in the session. This package only supports one single flash message at a time.

composer.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919
"php": "^7.4",
2020
"illuminate/session": "^5.8|^6.0|^7.0|^8.0"
2121
},
22+
"require-dev": {
23+
"phpunit/phpunit": "^9.3",
24+
"orchestra/testbench": "^3.8|^4.0|^5.0|^6.0"
25+
},
2226
"autoload": {
2327
"psr-4": {
2428
"Spatie\\Flash\\": "src"

0 commit comments

Comments
 (0)