From 0c349e4061576a0c9a22d8e3c56d28b1117f19b0 Mon Sep 17 00:00:00 2001 From: Oleksandr Moshta Date: Tue, 27 Aug 2024 23:54:21 +0300 Subject: [PATCH] chore: update dependencies for compatibility with PHP 8.3 (#4) * chore: update dependencies for compatibility with PHP 8.3 * fix: PHP 8.1 is minimal version for newest dependencies version --- .github/workflows/tests.yml | 2 +- composer.json | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6525a05..7eb9f03 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: - php: [8.0, 8.1] + php: [8.1, 8.2, 8.3] steps: - name: Checkout code diff --git a/composer.json b/composer.json index 1439608..2584df5 100644 --- a/composer.json +++ b/composer.json @@ -1,9 +1,9 @@ { "require": { - "roave/better-reflection": "^5.0", + "roave/better-reflection": "^6.0", "symfony/console": ">3.0", - "nategood/httpful": "^0.3.2", - "spatie/emoji": "^2.1" + "nategood/httpful": "^1.0", + "spatie/emoji": "^4.1" }, "name": "testomatio/list-tests", "description":"Tests preview & import for PHPUnit & Codeception tests", @@ -25,7 +25,7 @@ } }, "require-dev": { - "codeception/codeception": "^4.1", + "codeception/codeception": "^4.2", "codeception/module-asserts": "^1.0.0", "codeception/module-cli": "^1.0", "codeception/module-filesystem": "^1.0",