Skip to content

Commit 662e230

Browse files
authored
Add support for Laravel 10 (#1)
1 parent 01a26f5 commit 662e230

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

.github/workflows/run-tests.yml

Lines changed: 6 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.*, 9.* ]
12+
laravel: [ 8.*, 9.*, 10.* ]
1313
dependency-version: [ prefer-stable ]
1414
include:
1515
- laravel: 6.*
@@ -31,6 +31,11 @@ jobs:
3131
testbench: 6.*
3232
- laravel: 9.*
3333
testbench: 7.*
34+
- laravel: 10.*
35+
testbench: 8.*
36+
exclude:
37+
- laravel: 10.*
38+
php: 8.0
3439

3540
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
3641

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
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-9-red?style=flat-square&logo=laravel&logoColor=white)](https://laravel.com)
4+
[![Laravel](https://img.shields.io/badge/laravel-10-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)
6-
[![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)
6+
[![Build Status](https://img.shields.io/github/actions/workflow/status/codezero-be/laravel-flash/run-tests.yml?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)
88
[![Code Quality](https://img.shields.io/codacy/grade/22d50bd2782540bb806f576966a5f5d5/master?style=flat-square)](https://app.codacy.com/gh/codezero-be/laravel-flash)
99
[![Total Downloads](https://img.shields.io/packagist/dt/codezero/laravel-flash.svg?style=flat-square)](https://packagist.org/packages/codezero/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|^9.0",
21-
"illuminate/support": "^6.0|^7.0|^8.0|^9.0"
20+
"illuminate/session": "^6.0|^7.0|^8.0|^9.0|^10.0",
21+
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0"
2222
},
2323
"require-dev": {
24-
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
24+
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0",
2525
"phpunit/phpunit": "^8.0|^9.0"
2626
},
2727
"scripts": {

0 commit comments

Comments
 (0)