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).
33 lines
657 B
JSON
33 lines
657 B
JSON
{
|
|
"name": "indifferentketchup/codex",
|
|
"description": "Generic PHP log parsing and analysis framework.",
|
|
"license": "MIT",
|
|
"type": "library",
|
|
"authors": [
|
|
{
|
|
"name": "indifferentketchup",
|
|
"email": "samkintop@gmail.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=8.4"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^12"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"IndifferentKetchup\\Codex\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"IndifferentKetchup\\Codex\\Test\\Src\\": "test/src/",
|
|
"IndifferentKetchup\\Codex\\Test\\Tests\\": "test/tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "phpunit test/tests"
|
|
}
|
|
}
|