You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This could make config usages more semantic. For example, what does config('hyde.name') mean? Wouldn't it make more sense if it was config('site.name)? The Hyde config could then be scoped to focus more on configuring application behaviour, instead of site presentation.
The text was updated successfully, but these errors were encountered:
In addition, I would like to implement a YAML config option. This would be an optional feature, and work as a superset over the PHP configs. When the application boots, the YAML config is merged over the others. This, paired with a defined JSON schema would bring a stable location for project configuration settings. The PHP config files would still be used to configure behaviour, while the YAML one is for presentation.
This could make config usages more semantic. For example, what does
config('hyde.name')
mean? Wouldn't it make more sense if it wasconfig('site.name)
? The Hyde config could then be scoped to focus more on configuring application behaviour, instead of site presentation.The text was updated successfully, but these errors were encountered: