From f76493621affbe2818fa890a7b222f2f6ed0f4cf Mon Sep 17 00:00:00 2001 From: Kim Sandell Date: Tue, 11 Nov 2025 16:39:14 +0100 Subject: [PATCH 1/4] latest changelog --- changelog.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index 6a9d6f3..c054c09 100644 --- a/changelog.md +++ b/changelog.md @@ -4,8 +4,9 @@ SPIN Framework Changelog ## 0.0.35 - Unittests updated to support PHP 8.4 and PHPUnit 12 -- Docblocks refactores in many places -- Config +- Docblocks refactored in many places +- Config automatically replaces ${env:VAR} environment macros on loading +- Hook related things removed from codebase ## 0.0.34 - Bugfix on PDO not correctly parsing default options From 7557bba44d1c0ebafa627b54bc73a205dbf677bd Mon Sep 17 00:00:00 2001 From: Kim Sandell Date: Tue, 11 Nov 2025 16:40:51 +0100 Subject: [PATCH 2/4] version file --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index bb951c8..155069a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.0.34 +0.0.35 From eca30ea4460c4899f9f58dda6fbca8b16ecd310d Mon Sep 17 00:00:00 2001 From: Kim Sandell Date: Tue, 11 Nov 2025 16:54:18 +0100 Subject: [PATCH 3/4] composer phpunit ^12 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index e6ab294..f091b75 100644 --- a/composer.json +++ b/composer.json @@ -60,7 +60,7 @@ "test": "phpunit" }, "require-dev": { - "phpunit/phpunit": "^10.5 || ^11.0 || ^12.0" + "phpunit/phpunit": "^12" }, "config": { "optimize-autoloader": true From 801fdbf722b332eabdbea8477e95ecc8f913f5c9 Mon Sep 17 00:00:00 2001 From: Kim Sandell Date: Tue, 11 Nov 2025 16:59:34 +0100 Subject: [PATCH 4/4] composer using phpunit ^10 or higher for php 8.1+ --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index f091b75..7a07575 100644 --- a/composer.json +++ b/composer.json @@ -60,7 +60,7 @@ "test": "phpunit" }, "require-dev": { - "phpunit/phpunit": "^12" + "phpunit/phpunit": "^10.5||^11.0||^12.0" }, "config": { "optimize-autoloader": true