From ad8bc298bf5d744e86089edaa51d3a9f26245aee Mon Sep 17 00:00:00 2001 From: Abdul Malik Ikhsan Date: Sat, 28 Dec 2024 20:21:06 +0700 Subject: [PATCH 1/2] version 2: bump requirement to php 8.2 --- composer.json | 4 ++-- phpunit.xml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index d5bf3be..e02d684 100644 --- a/composer.json +++ b/composer.json @@ -22,14 +22,14 @@ } ], "require": { - "php": "^8.1", + "php": "^8.2", "webmozart/assert": "^1.11" }, "require-dev": { "laminas/laminas-coding-standard": "^2.4", "phpstan/phpstan": "^2.0", "phpstan/phpstan-webmozart-assert": "^2.0", - "phpunit/phpunit": "^10.0", + "phpunit/phpunit": "^11.0", "rector/rector": "dev-main" }, "config": { diff --git a/phpunit.xml b/phpunit.xml index a3a765d..95121f1 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -1,6 +1,6 @@ - - + + From 525482d652118878e32da876101b98e7b1e35cd6 Mon Sep 17 00:00:00 2001 From: Abdul Malik Ikhsan Date: Sat, 28 Dec 2024 20:21:36 +0700 Subject: [PATCH 2/2] version 2: bump requirement to php 8.2 --- .github/workflows/ci_build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci_build.yml b/.github/workflows/ci_build.yml index f701049..8036e24 100644 --- a/.github/workflows/ci_build.yml +++ b/.github/workflows/ci_build.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-versions: ['8.1', '8.2'] + php-versions: ['8.2', '8.3', '8.4'] steps: - name: Setup PHP Action uses: shivammathur/setup-php@v2