Davide Pastore
Davide Pastore
Please, [take a look to the source code of getDefaults](https://github.com/hassankhan/config/blob/develop/src/AbstractConfig.php#L51) to better understand it. It should be overridden to work as you want. Tell me in details if I'm missing...
Thanks for the detailed explanation @intco , now it's clear. 😄 It's an issue and you are right about it. A possible solution could be using `array_merge_recursive` instead of `array_merge`...
I'm really sorry for the delay. I would like to know how you can handle the case where you want to put in a property the string "%parameters.foo%", even if...
Hi @psychomieze! Sorry for the late reply. Yes, a PR in this sense would be cool! 😄 But be sure to do it for the **develop** branch.
Hi @Zyles, yes, you can do something like this. For example if you have **config.yml** ``` yml database: host: %hostname% user: %username% password: %password% api: limit: 10 ``` and **parameters.yml**...
@Zyles This has sense. The only problem with this is: how can I handle the case where I have a configuration file with the value of `"%module1.database.host%"` and I want...
Yes, this one could be a solution for the given problem. Do you think that every `*` should be only for **one** position? What I mean is that it won't...
[RecursiveArrayIterator](http://php.net/manual/en/class.recursivearrayiterator.php) will help us. Take a look to [this solution](http://stackoverflow.com/a/33498542/1992780), it's exactly what we want: ``` php /** * Recursive find in the given $array and $needle. * @param $array...
I also like it. I think that it is ok. :v:
For me it is indifferent, but we have to create an auto redirect from this repo. Anyway I think that this could remain here.