Coder Social home page Coder Social logo

Include/Import config about config HOT 4 OPEN

respect avatar respect commented on July 30, 2024
Include/Import config

from config.

Comments (4)

alganet avatar alganet commented on July 30, 2024

I've been using a pattern for a quite long time:

<?php
$configLoader = new Container('loader.ini');
$config = $configLoader->config;
[config Respect\Config\Container]
loadFile[] = [default.ini]
loadFile[] = [production.ini]
loadFile[] = [app.ini]

Works pretty well! Perhaps we could institutionalize this pattern. Some kind of:

[this]
loadFile[] = [app.ini]

[conn PDO]
etc = ...

from config.

nickl- avatar nickl- commented on July 30, 2024

Yes of course an array! Why didn't I think of that.

@alganet Have you given overwriting preference any thought? I guess we have two options top-down or bottom-up, unless there are something like arrays which I'm not seeing. =)

Dependencies are a non issue as all the values will be loaded before they ever become required, iow the order does not impact dependency unlike overwriting which will require a definitive preference where conflicting properties are found.

from config.

alganet avatar alganet commented on July 30, 2024

I'm pretty sure the Container only works from top to bottom. It can handle some missing variables in the way, but I didn't tested with large links between objects missing (which is similar to reading from bottom to top).

Config is pretty fragile. It's magic comes from two limitations: it follows the INI data structure which has limited deepness and it depends on the order of declaration. This limitations also work as reassurance. We can infer a lot more from a limited container and provide runtime flexibility instead of static flexibility. That's why it's code is so hard to change and at the same time so powerful.

from config.

augustohp avatar augustohp commented on July 30, 2024

😊 Just remembered what the issue #23 with "Better entropy solver" had to do about: When we load multiple files, we need to load them in the correct order or declare them in the right order. The issue was to solve that kind of problem, seeking for dependencies and the container (ini) whom had more entropy (dependencies) would be loaded later. Does that ring a bell to you @alganet ?

from config.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.