From 4e41d8ae29d5580964fba3001f0b3a07998db456 Mon Sep 17 00:00:00 2001 From: Marco Pfeiffer Date: Thu, 20 May 2021 12:58:36 +0200 Subject: [PATCH] add php 8 to test suite --- .github/workflows/test.yml | 2 +- composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f0085ac..06e4c0d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,7 +6,7 @@ jobs: test: strategy: matrix: - php-version: ['7.1', '7.2', '7.3', '7.4'] + php-version: ['7.1', '7.2', '7.3', '7.4', '8.0'] composer-parameters: ['--prefer-stable', '--prefer-lowest'] runs-on: ubuntu-latest diff --git a/composer.json b/composer.json index e03c969..2b19ce0 100644 --- a/composer.json +++ b/composer.json @@ -24,7 +24,7 @@ } ], "require": { - "php": "~7.1", + "php": "~7.1||~8.0", "aws/aws-sdk-php": "^3.98", "doctrine/dbal": "^2.7" },