From cfd895f369f1c07dc3e22c68a56ed9cc0dccb564 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Tue, 3 Nov 2020 12:45:46 +0100 Subject: [PATCH] PHP 8 Support --- .github/workflows/tests.yml | 4 ++-- composer.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index cb8289b8..d3fcce6f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,12 +8,12 @@ on: jobs: tests: - runs-on: ubuntu-latest + strategy: fail-fast: true matrix: - php: [7.2, 7.3, 7.4] + php: [7.2, 7.3, 7.4, 8.0] laravel: [^6.0, ^7.0, ^8.0] exclude: - php: 7.2 diff --git a/composer.json b/composer.json index 6c781361..3d6deb18 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ } ], "require": { - "php": "^7.2", + "php": "^7.2|^8.0", "illuminate/bus": "^6.0|^7.0|^8.0", "illuminate/contracts": "^6.0|^7.0|^8.0", "illuminate/database": "^6.0|^7.0|^8.0",