Go to file
Norbert Wagner 9457987a31 Settings files are no longer required
all you need is a config/ directory under the appPath
If you do not have any settingsfiles to read, show will always report
settings not found
If you write, you can only write a new file with settings in the root
like `cfg write PREFIX
='{"key":"value","key2":{"some":"more","levels":"there"}}'

Which will give you a file `config/PREFIX.conf.php` with the contents
``` php
<?php return
[
	'key' => 'value',
	'key2' =>
	[
		'some' => 'more',
		'levels' => 'there'
	]
];
```

If you have a `default.conf.php` but now `conf.php` and modify a setting
a new conf.php file with the setting to override is written
2021-05-05 08:52:34 +02:00
bin Settings files are no longer required 2021-05-05 08:52:34 +02:00
src fixes a bug that did not let you write an empty array (infinite loop) 2021-05-04 17:53:42 +02:00
tests test numeric array override 2021-01-14 18:30:36 +01:00
.gitignore Open sourcing package 2021-01-05 17:46:56 +01:00
COPYING Open sourcing package 2021-01-05 17:46:56 +01:00
composer.json implement beta version of cli 2021-05-04 17:55:29 +02:00
composer.lock implement beta version of cli 2021-05-04 17:55:29 +02:00