Feature/docker impl settings refactor#72
Merged
jvspeed74 merged 11 commits intoFeb 15, 2026
Conversation
… improve structure
…ion inspections in test files
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.
This pull request migrates the application's configuration system from INI files to
.envfiles, introducing strongly-typed configuration classes for improved reliability and maintainability. It updates documentation and setup instructions to reflect the new approach, removes legacy INI-based configuration files, and adds support for loading environment variables using thevlucas/phpdotenvlibrary.Configuration system migration:
config/config.ini,config/config.ini.example,config/config.php) and replaced them with a.env-based approach using new strongly-typed classes (AppConfig,DatabaseConfig,LogConfig, andConfig). [1] [2] [3] [4] [5] [6] [7].env.examplewith expanded settings for database, application, and logging configuration.config/bootstrap.phpto initialize configuration from.envusing the new classes.Dependency and autoload changes:
vlucas/phpdotenvas a dependency and included new config classes in Composer autoload. [1] [2]Documentation updates:
README.mdandDEV.mdto document the new.env-based configuration system, including migration instructions and references to detailed documentation. [1] [2]IDE/project configuration updates: