Download the PHP package concept-labs/config without Composer
On this page you can find all versions of the php package concept-labs/config. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download concept-labs/config
More information about concept-labs/config
Files in concept-labs/config
Informations about the package config
Concept Labs Simple Config
Documentation is in progress
Welcome to Concept-Labs/config
— a flexible and efficient configuration management library for PHP. This package is designed as part of the Singularity
framework but can be used as a standalone component.
Key Features
- Path-Based Access: Access configuration data using dot-separated paths (e.g.,
path.to.key
). - Plugin System: Extensible plugin architecture for processing configuration values (e.g.,
${var}
substitution). - Compilation: Optimize performance by compiling configurations into JSON for fast loading.
- Caching: Integration with PSR-16 (
SimpleCache
) for caching processed values. - Context Support: Dynamic variable substitution using a context (e.g.,
${HOME}
).
Installation
Install the package via Composer:
Requires PHP >= 8.0. Usage**
-
Initialization
-
Adding Plugins Plugins allow customization of configuration value processing:
- Loading Configuration Load configuration from various sources (file, array, JSON string):
- Checking Key Existence
Performance Optimization
- JSON Format: Configurations are exported to JSON using json_encode, which is faster and more compact than var_export + include.
- Single Plugin Chain: PluginManager builds the processing chain once and reuses it for efficiency.
- Caching: Leverage PSR-16 caching to store processed values.
-
Contributing
-
Clone the repository:
-
Install dependencies:
- Submit a Pull Request with your changes.
License This project is licensed under the MIT License.
Acknowledgements Developed as part of the Singularity framework by the Concept Labs team.