From 377cdd397a0d424146c39b92a36a851f95587842 Mon Sep 17 00:00:00 2001 From: freek Date: Wed, 9 Sep 2020 00:41:35 +0200 Subject: [PATCH] wip --- .github/workflows/run-tests.yml | 4 +++- CHANGELOG.md | 4 ++++ composer.json | 8 ++++---- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index c2aabfdd..0d8b2a55 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -11,10 +11,12 @@ jobs: strategy: matrix: php: [7.4, 7.3, 7.2] - laravel: [7.*, 6.*, 5.8.*] + laravel: [8.*, 7.*, 6.*, 5.8.*] dependency-version: [prefer-lowest, prefer-stable] os: [ubuntu-latest] include: + - laravel: 8.* + testbench: 6.* - laravel: 7.* testbench: 5.* - laravel: 6.* diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a2f5cee..0b6169f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to `laravel-query-builder` will be documented in this file +## 2.8.3 - 2020-09-08 + +- add support for Laravel 8 + ## 2.8.2 - 2020-05-25 - fix scope filters that are added via macros (e.g. `onlyTrashed`) (#469) diff --git a/composer.json b/composer.json index e775ad56..cfa6d16a 100644 --- a/composer.json +++ b/composer.json @@ -21,13 +21,13 @@ ], "require": { "php": "^7.1", - "illuminate/database": "~5.6.34|~5.7.0|~5.8.0|^6.0|^7.0", - "illuminate/http": "~5.6.34|~5.7.0|~5.8.0|^6.0|^7.0", - "illuminate/support": "~5.6.34|~5.7.0|~5.8.0|^6.0|^7.0" + "illuminate/database": "~5.6.34|~5.7.0|~5.8.0|^6.0|^7.0|^8.0", + "illuminate/http": "~5.6.34|~5.7.0|~5.8.0|^6.0|^7.0|^8.0", + "illuminate/support": "~5.6.34|~5.7.0|~5.8.0|^6.0|^7.0|^8.0" }, "require-dev": { "phpunit/phpunit": "^7.0|^8.0|^9.0", - "orchestra/testbench": "~3.6.0|~3.7.0|~3.8.0|^4.0|^5.0", + "orchestra/testbench": "~3.6.0|~3.7.0|~3.8.0|^4.0|^5.0|^6.0", "ext-json": "*" },