From 2861280adc96840ddc5298f3a10e70e7f3aee0b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Gamez?= Date: Fri, 25 Nov 2022 19:00:50 +0100 Subject: [PATCH] Re-introduce support for PHP ^8.0 (instead of only 8.1.x and 8.2.x) --- .github/workflows/tests.yml | 7 +------ composer.json | 2 +- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 80e6031..ecd5a86 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,11 +15,9 @@ jobs: strategy: matrix: php: + - "8.0" - "8.1" - "8.2" - dependencies: - - "lowest" - - "highest" steps: - name: Checkout code @@ -34,9 +32,6 @@ jobs: COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }} - uses: "ramsey/composer-install@v2" - with: - dependency-versions: "${{ matrix.dependencies }}" - composer-options: "${{ matrix.composer-options }}" - name: Setup problem matchers for PHP run: echo "::add-matcher::${{ runner.tool_cache }}/php.json" diff --git a/composer.json b/composer.json index 67268c1..7c0da57 100644 --- a/composer.json +++ b/composer.json @@ -11,7 +11,7 @@ } ], "require": { - "php": "~8.1.0 || ~8.2.0", + "php": "^8.0", "psr/clock": "^1.0" }, "require-dev": {