Usage Guide#
TODO#
this section does not belong into the user manual, but into developer documentation.
Adding as a Dependency#
In your plugin's composer.json:
Plugin Registration#
For information about registering your plugin with the TopConfigRegistry, see Plugin Registration.
Configuration Types#
The TopConfigRegistry supports the following value types:
- string: String values
- bool: Boolean values
- int: Integer values
Best Practices#
- Always use dot notation for new configuration keys
- Keep configuration mappings in a single location
- Use type-safe getters
- Document your configuration keys
- Handle configuration exceptions appropriately