From 10bdfcde3a14c9b2ba0ccf8e8822c241adf9ede3 Mon Sep 17 00:00:00 2001 From: Stephan Vierkant Date: Thu, 2 Dec 2021 16:21:21 +0100 Subject: [PATCH] Allow only supported PHP versions --- .github/workflows/ci-tests.yaml | 2 +- composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-tests.yaml b/.github/workflows/ci-tests.yaml index 090fca4..7e5eec2 100644 --- a/.github/workflows/ci-tests.yaml +++ b/.github/workflows/ci-tests.yaml @@ -12,7 +12,7 @@ jobs: strategy: matrix: operating-system: [ ubuntu-latest, macos-latest ] - php-versions: [ '7.3', '7.4', '8.0' ] + php-versions: [ '7.4', '8.0', '8.1' ] name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }} steps: - name: Checkout diff --git a/composer.json b/composer.json index 078f67b..c502d48 100644 --- a/composer.json +++ b/composer.json @@ -9,7 +9,7 @@ } ], "require": { - "php": "^7.2 || ^8.0", + "php": "^7.4 || ^8.0", "symfony/console": "^3.4 || ^4.3 || ^5.0", "symfony/finder": "^3.4 || ^4.3 || ^5.0", "symfony/filesystem": "^3.4 || ^4.3 || ^5.0"