Skip to content

Commit b1fb34b

Browse files
author
Illia Sakovich
committed
Adds Laravel 8 support, drops Laravel 5.8 support, drops PHP 7.2 support
1 parent ad3ce60 commit b1fb34b

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/run-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ jobs:
99
strategy:
1010
fail-fast: true
1111
matrix:
12-
php: [7.4, 7.3, 7.2]
13-
laravel: [7.*, 6.*, 5.8.*]
12+
php: [7.4, 7.3]
13+
laravel: [8.*, 7.*, 6.*]
1414
dependency-version: [prefer-lowest, prefer-stable]
1515
include:
16+
- laravel: 8.*
17+
testbench: 6.*
1618
- laravel: 7.*
1719
testbench: 5.*
1820
- laravel: 6.*
1921
testbench: 4.*
20-
- laravel: 5.8.*
21-
testbench: 3.8.*
2222

2323
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2424

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
"type": "library",
55
"license": "MIT",
66
"require": {
7-
"php": "^7.2",
7+
"php": "^7.3",
88
"ext-json": "*",
9-
"illuminate/support": "5.8.*|^6.0|^7.0"
9+
"illuminate/support": "^6.0|^7.0|^8.0"
1010
},
1111
"require-dev": {
12-
"orchestra/testbench": "^3.8|^4.0|^5.0"
12+
"orchestra/testbench": "^4.0|^5.0|^6.0"
1313
},
1414
"autoload": {
1515
"psr-4": {

0 commit comments

Comments
 (0)