From 5a732c3745972dc1f7ad0e1e6e6d98c7a5b10359 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Tue, 25 Aug 2020 17:16:51 +0200 Subject: [PATCH] Laravel 8 support --- .github/workflows/tests.yml | 5 ++++- composer.json | 8 ++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ffa6010c..cb8289b8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,7 +14,10 @@ jobs: fail-fast: true matrix: php: [7.2, 7.3, 7.4] - laravel: [^6.0, ^7.0] + laravel: [^6.0, ^7.0, ^8.0] + exclude: + - php: 7.2 + laravel: ^8.0 name: P${{ matrix.php }} - L${{ matrix.laravel }} diff --git a/composer.json b/composer.json index 22322791..d23ca7d5 100644 --- a/composer.json +++ b/composer.json @@ -16,13 +16,13 @@ "require": { "php": "^7.2", "ext-json": "*", - "illuminate/contracts": "^6.9|^7.0", - "illuminate/database": "^6.9|^7.0", - "illuminate/support": "^6.9|^7.0" + "illuminate/contracts": "^6.9|^7.0|^8.0", + "illuminate/database": "^6.9|^7.0|^8.0", + "illuminate/support": "^6.9|^7.0|^8.0" }, "require-dev": { "mockery/mockery": "^1.0", - "orchestra/testbench": "^4.0|^5.0", + "orchestra/testbench": "^4.0|^5.0|^6.0", "phpunit/phpunit": "^8.0" }, "autoload": {