From ca0b1a1465b8768c7c778bc41d9bc6cb1e2b172e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Bouc=CC=8Cek?= Date: Thu, 17 Oct 2024 08:36:55 +0200 Subject: [PATCH 1/4] Composer: Upgrade Nette Tester & PHPStan --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 2caf0c2..9220671 100644 --- a/composer.json +++ b/composer.json @@ -19,9 +19,9 @@ "ext-json": "*" }, "require-dev": { - "nette/tester": "^2.4", + "nette/tester": "^2.5", "nette/utils": "^3.1 || ^4.0", - "phpstan/phpstan": "1.9.2" + "phpstan/phpstan": "1.12.6" }, "suggest": { "nette/utils": "Allows to safe escape HTML with markup: https://doc.nette.org/en/utils/html-elements" From f47146cf5fb36f65f1582fad7ce3f00112ea5484 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Bouc=CC=8Cek?= Date: Thu, 17 Oct 2024 08:37:07 +0200 Subject: [PATCH 2/4] PHP: Add support for PHP 8.4 --- .github/workflows/code_analysis.yaml | 1 + composer.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/code_analysis.yaml b/.github/workflows/code_analysis.yaml index 452ef86..c98d4a0 100644 --- a/.github/workflows/code_analysis.yaml +++ b/.github/workflows/code_analysis.yaml @@ -17,6 +17,7 @@ jobs: - '8.1' - '8.2' - '8.3' + - '8.4' actions: - name: PHPStan diff --git a/composer.json b/composer.json index 9220671..7f023c8 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ } ], "require": { - "php": "~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0", + "php": "~7.2 || ~8.0", "ext-json": "*" }, "require-dev": { From 7e787f7e3e66ad35686fd0eec92724d78edfe66b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Bouc=CC=8Cek?= Date: Thu, 17 Oct 2024 09:07:29 +0200 Subject: [PATCH 3/4] Composer: Upgrade Nette Tester & PHPStan - fix PHP 7 support --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 7f023c8..08c0f16 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,7 @@ "ext-json": "*" }, "require-dev": { - "nette/tester": "^2.5", + "nette/tester": "^2.4 || ^2.5", "nette/utils": "^3.1 || ^4.0", "phpstan/phpstan": "1.12.6" }, From 84b1ad30618a4c7a00ec8a63e5a2e04971fb78b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Bouc=CC=8Cek?= Date: Thu, 17 Oct 2024 09:09:22 +0200 Subject: [PATCH 4/4] Composer: Upgrade Nette Tester & PHPStan - fix PHP 8.4 (temporary) --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 08c0f16..0ce1dcc 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,7 @@ "ext-json": "*" }, "require-dev": { - "nette/tester": "^2.4 || ^2.5", + "nette/tester": "^2.4 || ^2.5 || dev-master", "nette/utils": "^3.1 || ^4.0", "phpstan/phpstan": "1.12.6" },