Skip to content

Commit 01a26f5

Browse files
committed
Add support for Laravel 9
1 parent 11178f3 commit 01a26f5

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/run-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
php: [ 8.0, 8.1 ]
12-
laravel: [ 8.* ]
12+
laravel: [ 8.*, 9.* ]
1313
dependency-version: [ prefer-stable ]
1414
include:
1515
- laravel: 6.*
@@ -29,6 +29,8 @@ jobs:
2929
testbench: 6.*
3030
- laravel: 8.*
3131
testbench: 6.*
32+
- laravel: 9.*
33+
testbench: 7.*
3234

3335
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
3436

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Flash Notifications for Laravel
22

33
[![GitHub release](https://img.shields.io/github/release/codezero-be/laravel-flash.svg?style=flat-square)](https://github.com/codezero-be/laravel-flash/releases)
4-
[![Laravel](https://img.shields.io/badge/laravel-8-red?style=flat-square&logo=laravel&logoColor=white)](https://laravel.com)
4+
[![Laravel](https://img.shields.io/badge/laravel-9-red?style=flat-square&logo=laravel&logoColor=white)](https://laravel.com)
55
[![License](https://img.shields.io/packagist/l/codezero/laravel-flash.svg?style=flat-square)](LICENSE.md)
66
[![Build Status](https://img.shields.io/github/workflow/status/codezero-be/laravel-flash/Tests/master?style=flat-square&logo=github&logoColor=white&label=tests)](https://github.com/codezero-be/laravel-flash/actions)
77
[![Code Coverage](https://img.shields.io/codacy/coverage/22d50bd2782540bb806f576966a5f5d5/master?style=flat-square)](https://app.codacy.com/gh/codezero-be/laravel-flash)

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
],
1818
"require": {
1919
"php": "^7.2|^8.0",
20-
"illuminate/session": "^6.0|^7.0|^8.0",
21-
"illuminate/support": "^6.0|^7.0|^8.0"
20+
"illuminate/session": "^6.0|^7.0|^8.0|^9.0",
21+
"illuminate/support": "^6.0|^7.0|^8.0|^9.0"
2222
},
2323
"require-dev": {
24-
"orchestra/testbench": "^4.0|^5.0|^6.0",
24+
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
2525
"phpunit/phpunit": "^8.0|^9.0"
2626
},
2727
"scripts": {

0 commit comments

Comments
 (0)