From 14656871ef1207447b2c666caf6eefaa9ad5a900 Mon Sep 17 00:00:00 2001 From: Frank Dekker Date: Tue, 18 Aug 2020 21:42:26 +0200 Subject: [PATCH] allow php 7.4 and added test for php7.4 --- .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 0f9ce77..b2abb65 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php-versions: ['7.1', '7.2', '7.3'] + php-versions: ['7.1', '7.2', '7.3', '7.4'] composer-flags: ['', '--prefer-lowest'] steps: - uses: actions/checkout@v2 diff --git a/composer.json b/composer.json index ee5f09f..60a7d4d 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ } }, "require": { - "php": "7.1.* || 7.2.* || 7.3.*", + "php": "7.1.* || 7.2.* || 7.3.* || 7.4.*", "symfony/validator": "^4.3 || 5.*", "symfony/polyfill-php80": "^1.16" },