Skip to content

Commit 377cdd3

Browse files
committed
wip
1 parent 84b5059 commit 377cdd3

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

.github/workflows/run-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,12 @@ jobs:
1111
strategy:
1212
matrix:
1313
php: [7.4, 7.3, 7.2]
14-
laravel: [7.*, 6.*, 5.8.*]
14+
laravel: [8.*, 7.*, 6.*, 5.8.*]
1515
dependency-version: [prefer-lowest, prefer-stable]
1616
os: [ubuntu-latest]
1717
include:
18+
- laravel: 8.*
19+
testbench: 6.*
1820
- laravel: 7.*
1921
testbench: 5.*
2022
- laravel: 6.*

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to `laravel-query-builder` will be documented in this file
44

5+
## 2.8.3 - 2020-09-08
6+
7+
- add support for Laravel 8
8+
59
## 2.8.2 - 2020-05-25
610

711
- fix scope filters that are added via macros (e.g. `onlyTrashed`) (#469)

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
],
2222
"require": {
2323
"php": "^7.1",
24-
"illuminate/database": "~5.6.34|~5.7.0|~5.8.0|^6.0|^7.0",
25-
"illuminate/http": "~5.6.34|~5.7.0|~5.8.0|^6.0|^7.0",
26-
"illuminate/support": "~5.6.34|~5.7.0|~5.8.0|^6.0|^7.0"
24+
"illuminate/database": "~5.6.34|~5.7.0|~5.8.0|^6.0|^7.0|^8.0",
25+
"illuminate/http": "~5.6.34|~5.7.0|~5.8.0|^6.0|^7.0|^8.0",
26+
"illuminate/support": "~5.6.34|~5.7.0|~5.8.0|^6.0|^7.0|^8.0"
2727
},
2828
"require-dev": {
2929
"phpunit/phpunit": "^7.0|^8.0|^9.0",
30-
"orchestra/testbench": "~3.6.0|~3.7.0|~3.8.0|^4.0|^5.0",
30+
"orchestra/testbench": "~3.6.0|~3.7.0|~3.8.0|^4.0|^5.0|^6.0",
3131

3232
"ext-json": "*"
3333
},

0 commit comments

Comments
 (0)