hackphp/config

HackPHP Config Access.

1.1 2021-08-21 10:15 UTC

This package is auto-updated.

Last update: 2024-04-21 16:07:42 UTC


README

HackPHP Config Access.

Usage

composer require hackphp/config
use Hackphp\Config\Config;
use Hackphp\Config\Parsers\ArrayParser;

$config = new Config([
    "app" => [
        "name" => "HackPHP"
    ],
    "server" => [
        "host" => "127.0.0.1",
        "port" => 8000
    ],
]);

$configRootDir = __DIR__ . "/config";
$config->addParser(new ArrayParser($configRootDir));
$config->load();

echo $config->get("server.host");
// output: 127.0.0.1

echo $config->get("file.key", "default value");
// output: default value