latitude-cartagene/simple-json-config

该包最新版本(v0.0.2)没有提供许可证信息。

PHP中的简单JSON配置加载器

v0.0.2 2015-09-29 14:39 UTC

This package is not auto-updated.

Last update: 2024-09-21 00:54:41 UTC


README

$config = new Config('config.json');

$host   = $config->get("host");
$port   = $config->get("port");

// Nested keys
$env    = $config->get("environment.dev");

自动加载

使用Composer PSR-4自动加载

$ composer dumpautoload

然后只需要求自动加载器

<?php

require_once('vendor/autoload.php');