From dba6d57cc704eb712f66849c310b8619195bd66e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?T=C3=B5nis=20Ormisson?= Date: Mon, 3 Aug 2026 10:43:04 +0300 Subject: [PATCH] chore: remove legacy project references --- CHANGELOG.md | 12 ++++++++---- README.md | 2 +- composer.json | 4 ---- composer.lock | 4 ++-- examples/write12.php | 2 +- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd7985a..6be1c7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,14 @@ # Changelog +## 3.0.3 (2026-08-03) + +- Removed legacy package replacement metadata and remaining legacy project references from the active distribution. + ## 3.0.2 (2026-07-31) - Moved active maintenance to the independent `OpenStatSpec/php-spss` repository. -- Renamed the Composer package from `tiamo/spss` to `openstatspec/spss-sav`, while keeping the stable `SPSS\` PHP namespace. -- Preserved the original author attribution and added Composer replacement metadata for migration compatibility. +- Published the codec as `openstatspec/spss-sav`, while keeping the stable `SPSS\` PHP namespace. +- Preserved the original author attribution during the repository migration. ## 3.0.1 (2026-07-31) @@ -33,13 +37,13 @@ 2021-01 -* Compatibility: is_countable (PHP 7 >= 7.3.0, PHP 8) ([#58](https://github.com/tiamo/spss/pull/58)) +* Compatibility: is_countable (PHP 7 >= 7.3.0, PHP 8) (upstream PR #58) ## 2.2.1 2020-12 -* Fix date writer ([#55](https://github.com/tiamo/spss/pull/55)) +* Fix date writer (upstream PR #55) ## 2.2.0 diff --git a/README.md b/README.md index 0145b9e..0b340dd 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ A PHP library for reading and writing SPSS / PSPP SAV and ZSAV data files. -Maintained by [OpenStatSpec](https://github.com/OpenStatSpec). This project continues the MIT-licensed [`tiamo/spss`](https://github.com/tiamo/spss) codebase created by Vladyslav Korniienko. The stable PHP namespace remains `SPSS\` for compatibility. +Maintained by [OpenStatSpec](https://github.com/OpenStatSpec). This project continues the MIT-licensed codebase created by Vladyslav Korniienko. The stable PHP namespace remains `SPSS\` for compatibility. ## Requirements diff --git a/composer.json b/composer.json index c7612df..972eb91 100644 --- a/composer.json +++ b/composer.json @@ -20,7 +20,6 @@ "authors": [ { "name": "Korniienko Vladyslav", - "email": "vk.tiamo@gmail.com", "role": "Original author" }, { @@ -49,9 +48,6 @@ "phpunit/phpunit": "^13.2", "rector/rector": "^2.5" }, - "replace": { - "tiamo/spss": "self.version" - }, "autoload": { "psr-4": { "SPSS\\": "src/" diff --git a/composer.lock b/composer.lock index 16292e5..d21a9f8 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "f13352c267a82fdffc3d878e1232e145", + "content-hash": "bb567e9760eb48c3e76ca71bfde49f50", "packages": [], "packages-dev": [ { @@ -6210,5 +6210,5 @@ "platform-overrides": { "php": "8.4.1" }, - "plugin-api-version": "2.6.0" + "plugin-api-version": "2.9.0" } diff --git a/examples/write12.php b/examples/write12.php index b61f936..632bce6 100644 --- a/examples/write12.php +++ b/examples/write12.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * ISSUE: https://github.com/tiamo/spss/issues/12. + * Historical upstream issue #12. */ require __DIR__ . '/../vendor/autoload.php';