Skip to content

Commit 8e593a2

Browse files
authored
Merge pull request #21 from kirschbaum-development/laravel8
Support for Laravel 8
2 parents cacc197 + 33a08ea commit 8e593a2

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@ jobs:
1010
fail-fast: true
1111
matrix:
1212
php: [7.3, 7.4]
13-
laravel: [6.*, 7.*]
13+
laravel: [6.*, 7.*, 8.*]
1414
include:
15+
- laravel: 8.*
16+
testbench: 6.*
1517
- laravel: 7.*
1618
testbench: 5.*
1719
- laravel: 6.*

composer.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,12 @@
1919
],
2020
"require": {
2121
"php": "^7.1",
22-
"illuminate/support": "^6.0|^7.0",
23-
"illuminate/database": "^6.0|^7.0"
22+
"illuminate/support": "^6.0|^7.0|^8.0",
23+
"illuminate/database": "^6.0|^7.0|^8.0"
2424
},
2525
"require-dev": {
26-
"orchestra/testbench": "4.*|5.*",
26+
"laravel/legacy-factories": "^1.0@dev",
27+
"orchestra/testbench": "4.*|5.*|6.*",
2728
"phpunit/phpunit": "^8.0"
2829
},
2930
"autoload": {

0 commit comments

Comments
 (0)