Hi, I use CI setting library too and I think I know what you mean. You want to access the array elements by using dot notation, right? Like this:
PHP Code:
echo service('settings')->get('App.siteName.titleone'); // prints 'My Great Site'
Unfortunately, I don't think the library supports this feature yet. You have to use the array index instead, like this:
PHP Code:
echo service('settings')->get('App.siteName')[0]; // prints 'My Great Site'
Hope this helps!