[news] Config 1.1.0


Config package got a minor version.
It introduces ConfigInterface that is allowing one to customize the process of obtaining configs:
interface ConfigInterface
{
public function get(string $group): array;
public function has(string $group): bool;
}