From fd39a211f4417d2b1414fec50e6656ffe83d6585 Mon Sep 17 00:00:00 2001 From: Soner Sayakci Date: Wed, 20 Nov 2024 13:34:28 +0100 Subject: [PATCH] feat: add php 8.4 support --- .github/workflows/tests.yml | 2 +- composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3d1d2ba..06fd59a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: true matrix: - php: [7.4, 8.0, 8.1, 8.2, 8.3] + php: [7.4, 8.0, 8.1, 8.2, 8.3, 8.4] stability: ['prefer-stable'] name: PHP ${{ matrix.php }} - ${{ matrix.stability }} diff --git a/composer.json b/composer.json index fa91e3c..29f2fa8 100644 --- a/composer.json +++ b/composer.json @@ -3,7 +3,7 @@ "description": "Finds classes, interfaces, traits, and enums.", "type": "library", "require": { - "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~7.4.0" + "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~7.4.0" }, "require-dev": { "phpstan/phpstan": "^1.3",