refactor: Handle more cases and update tests #1
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces several improvements and updates across benchmarking, logging, and exception handling, as well as some workflow and configuration changes. The main highlights are the addition of PSR-3 logger support to the JSON repair functions, a new custom exception for invalid JSON after repair, enhancements to benchmarking configuration and coverage, and some workflow simplifications.
Logging and Exception Handling Improvements:
LoggerInterfaceparameter to thejson_repairandjson_repair_decodefunctions, allowing users to inject a logger for debugging repair actions. The logger is set on theJsonRepairerinstance if provided. (src/functions.php,composer.json) [1] [2] [3] [4] [5]JsonRepairExceptionclass, with a static method for reporting when the repair process produces output that is still invalid JSON. (src/Exceptions/JsonRepairException.php)Benchmarking Enhancements:
benchNativeJsonDecodeBaselineto compare the repair overhead against nativejson_decodeon valid JSON. (benchmarks/JsonRepairerBench.php)benchmarks/JsonRepairerBench.php,phpbench.json) [1] [2] [3]benchmarks/JsonRepairerBench.php)Workflow and Configuration Updates:
.github/workflows/run-tests.yml)benchmarksdirectory to.gitattributesasexport-ignoreto exclude it from distribution archives. (.gitattributes)colinodell/psr-testloggeras a dev dependency for testing logger integration. (composer.json)