feat(config): add modern PSR-4 config loaders#65
Merged
ralflang merged 1 commit intoFRAMEWORK_6_0from Mar 14, 2026
Merged
Conversation
Add four specialized config loaders with Vhost support: - ConfigLoader: Application config (conf.php) - BackendConfigLoader: Backend definitions (backends.php) - PrefsConfigLoader: Preference definitions (prefs.php) - RegistryConfigLoader: Global app registry (registry.php) Each loader loads from 5 layers: vendor defaults, base config, snippets, local overrides, and vhost overrides. All loaders return immutable state objects and never populate globals. Vhost detection externalized to Vhost object supporting auto- detection from $_SERVER or explicit hostname. No circular dependencies on config values. style: php-cs-fixer
eda38f0 to
9f1b763
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Add four specialized config loaders with immutable state objects for building modern APIs and frontends that don't require full legacy subsystem initialization.
Key Differences from Legacy
No globals: Return immutable state objects only - no
$GLOBALS['conf'],$GLOBALS['backends'], etc.Per-app isolation: Each app's config is separate and independently loaded, not stacked into one namespace like legacy Registry system.
Use Cases
Loaders Provided
Technical Features
Tests
62 tests, 176 assertions, all passing.
Note
This is not for migrating legacy code - legacy
Horde_Registry_Loadconfigcontinues working. This enables new code to load config without globals or legacy bootstrap overhead.