From 93297a25cc071787ee1177723a7312d76c89cb92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C5=A0pa=C4=8Dek?= Date: Sun, 23 Nov 2025 01:45:50 +0100 Subject: [PATCH] Drop PHP 7.4 support Because the nette/tester version that supports PHP 8.5 doesn't support 7.4, and test with --prefer-lowest would fail with anything else than nette/tester with 8.5 support. --- .github/workflows/php.yml | 1 - composer.json | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 5945d18..5b9d05f 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -10,7 +10,6 @@ jobs: strategy: matrix: php-version: - - "7.4" - "8.0" - "8.1" - "8.2" diff --git a/composer.json b/composer.json index 5ebd2a9..c560147 100644 --- a/composer.json +++ b/composer.json @@ -11,7 +11,7 @@ } ], "require": { - "php": "^7.4 || ^8.0" + "php": "^8.0" }, "require-dev": { "php-parallel-lint/php-parallel-lint": "^1.4",