From 9b143e9fe2a753ab3b85a7a1fd5ddf6bf07c08eb Mon Sep 17 00:00:00 2001 From: Artem Vasilev Date: Tue, 6 Aug 2024 18:04:54 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A1=D0=BE=D0=B2=D0=BC=D0=B5=D1=81=D1=82?= =?UTF-8?q?=D0=B8=D0=BC=D0=BE=D1=81=D1=82=D1=8C=20=D1=81=20php=208=20(#13)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Добавил разрешение совместимости с php 8.0 и выше #10 * Добавил php 8+ в линтер --- .github/workflows/static-analysis.yml | 8 ++++++++ composer.json | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index d224c3a..79cb6cc 100755 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -23,6 +23,10 @@ jobs: - "7.2" - "7.3" - "7.4" + - "8.0" + - "8.1" + - "8.2" + - "8.3" steps: - name: "Checkout" @@ -49,6 +53,10 @@ jobs: - "7.2" - "7.3" - "7.4" + - "8.0" + - "8.1" + - "8.2" + - "8.3" steps: - name: "Cancel Previous Runs" uses: styfle/cancel-workflow-action@0.11.0 diff --git a/composer.json b/composer.json index c460880..5ef329b 100755 --- a/composer.json +++ b/composer.json @@ -29,7 +29,7 @@ } ], "require": { - "php": ">=7.2 <8.0", + "php": ">=7.2 || ^8.0", "ext-mbstring": "*" }, "require-dev": {