Rewrite composer.json metadata for IndifferentKetchup fork

Rename package indifferentketchup/codex, replace authors entry with
samkintop@gmail.com, switch PSR-4 autoload roots to
IndifferentKetchup\Codex\, rewrite description as a generic log
parsing/analysis framework. License remains MIT. composer.lock left
intact; vendor/ regenerated locally via composer install (gitignored).
This commit is contained in:
2026-04-30 15:16:01 +00:00
parent 66a2fcc5f3
commit aae016d17e

View File

@@ -1,12 +1,12 @@
{ {
"name": "aternos/codex", "name": "indifferentketchup/codex",
"description": "PHP library to read, parse, print and analyse log files.", "description": "Generic PHP log parsing and analysis framework.",
"license": "MIT", "license": "MIT",
"type": "library", "type": "library",
"authors": [ "authors": [
{ {
"name": "Matthias Neid", "name": "indifferentketchup",
"email": "matthias@aternos.org" "email": "samkintop@gmail.com"
} }
], ],
"require": { "require": {
@@ -17,13 +17,13 @@
}, },
"autoload": { "autoload": {
"psr-4": { "psr-4": {
"Aternos\\Codex\\": "src/" "IndifferentKetchup\\Codex\\": "src/"
} }
}, },
"autoload-dev": { "autoload-dev": {
"psr-4": { "psr-4": {
"Aternos\\Codex\\Test\\Src\\": "test/src/", "IndifferentKetchup\\Codex\\Test\\Src\\": "test/src/",
"Aternos\\Codex\\Test\\Tests\\": "test/tests/" "IndifferentKetchup\\Codex\\Test\\Tests\\": "test/tests/"
} }
}, },
"scripts": { "scripts": {