41 if (!file_exists($name) || !is_readable($name)) {
42 throw new \InvalidArgumentException(
43 "Config-file '$name' does not exist or is not readable." 46 $json = json_decode(file_get_contents($name), JSON_OBJECT_AS_ARRAY);
47 if (!is_array($json)) {
48 throw new \InvalidArgumentException(
49 "Could not find JSON-array in '$name'." 58 $replacer =
function ($subject, $path, $value) use (&$replacer) {
59 if (count($path) === 0) {
62 $cur = array_shift($path);
63 $subject[$cur] = $replacer($subject[$cur], $path, $value);
67 foreach ($overwrites as $path => $value) {
68 $path = explode(
".", $path);
69 $json = $replacer($json, $path, $value);
77 if (in_array($name[0], [
"/",
"\\"])) {
80 return $this->base_dir .
"/" .
$name;
Read a json-formatted config from a file and overwrite some fields.
readConfigFile(string $name, array $overwrites=[])
TODO: We could use the "give me a transformation and I'll give you your result" pattern from th...
applyOverwrites(array $json, array $overwrites)
__construct($base_dir=null)
getRealFilename(string $name)