Refactor JsonConfigParser with modular plugin architecture #39
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.
PSR-3 Logger Implementation with Console Support
This PR adds a fully PSR-3 compliant logging system with console output support. The implementation is designed to integrate seamlessly with Symfony Console, respecting verbosity levels and providing colored output.
New Components:
Features:
-v,-vv,-vvv)Add Display Command for Configuration Visualization
Overview
This PR introduces a new
displaycommand that allows users to view their context configuration in a human-readable, color-coded format directly in the terminal. This makes it easier to debug configuration issues and understand complex configurations without having to open and parse JSON files manually.This will show a detailed, color-highlighted breakdown of their configuration including all documents, sources, and modifiers.
Refactor JsonConfigParser with modular plugin architecture
This PR refactors the
JsonConfigParserinto a more modular, extensible plugin-based architecture. The changes provide a foundation for handling diverse configuration needs through specialized plugins rather than a monolithic parser.Benefits