Skip to content

Commit 683dba1

Browse files
author
Robert Allport
authored
Laravel 10.x Compatibility (#6)
* Laravel 10.x Compatibility * Update run-tests-laravel-8.yml * Update README.md
1 parent eef0f26 commit 683dba1

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

.github/workflows/run-tests-laravel-8.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,23 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [ubuntu-latest]
12-
php: [8.0, 7.4]
13-
laravel: [8.*, 9.*]
12+
php: [7.4, 8.0, 8.1]
13+
laravel: [8.*, 9.*, 10.*]
1414
dependency-version: [prefer-stable]
1515
include:
16+
- laravel: 10.*
17+
testbench: 8.*
1618
- laravel: 8.*
1719
testbench: 6.*
1820
- laravel: 9.*
1921
testbench: 7.*
2022
exclude:
2123
- laravel: 9.*
22-
php: 7.4
24+
php: 7.4
25+
- laravel: 10.*
26+
php: 8.0
27+
- laravel: 10.*
28+
php: 7.4
2329

2430
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2531

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Some super useful redirect response macros to simplify your Laravel application.
1212

1313
## Requirements
1414

15-
PHP >= 7.2, Laravel >= 5.8.
15+
Laravel `>=5.8 | 6.x | 7.x | 8.x | 9.x | 10.x` supported
1616

1717
## Installation
1818

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
],
2020
"require": {
2121
"php": "^7.2|^8.0",
22-
"laravel/framework": "5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0"
22+
"laravel/framework": "5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0"
2323
},
2424
"require-dev": {
2525
"orchestra/testbench": ">=3.8",

0 commit comments

Comments
 (0)