From f3ffae7d869b077a41bd0e3d1b85e8a6d636c56c Mon Sep 17 00:00:00 2001 From: Ivan Dmitriev <28255085+zKoz210@users.noreply.github.com> Date: Tue, 16 May 2023 13:14:07 +0300 Subject: [PATCH 1/2] Fixed tests for PHP 8.2 --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 7dea842..1090a5c 100644 --- a/composer.json +++ b/composer.json @@ -25,8 +25,8 @@ "ext-pcntl": "*" }, "require-dev": { - "nesbot/carbon": "^2.47", - "pestphp/pest": "^1.22", + "nesbot/carbon": "^2.66", + "pestphp/pest": "^1.23", "phpunit/phpunit": "^9.5", "spatie/ray": "^1.10" }, @@ -54,4 +54,4 @@ }, "minimum-stability": "dev", "prefer-stable": true -} \ No newline at end of file +} From a9ea164d617cb980370c9f5218281615ec3d9833 Mon Sep 17 00:00:00 2001 From: Ivan Dmitriev <28255085+zKoz210@users.noreply.github.com> Date: Tue, 16 May 2023 13:15:31 +0300 Subject: [PATCH 2/2] Fixed for 8.2 --- .github/workflows/run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index f8a9760..c3ca994 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -9,7 +9,7 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest] - php: [8.1, 8.0] + php: [8.2, 8.1, 8.0] stability: [prefer-lowest, prefer-stable] name: P${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }}