定制 steroid/config 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

steroid/config

最新稳定版本:v1.1.1

Composer 安装命令:

composer require steroid/config

包简介

Steroid Config

README 文档

README

Build Status Coverage Status SensioLabsInsight Latest Stable Version Monthly Downloads

Installation:

"steroid/config": "~1.0"

Usage:

Config::setCacheDirectory($cache_directory);
$config = Config::instance()->load('config.txt');
$locale = $config->get('dev.locale');
$locale = Config::instance()->get('dev.locale');

Setting a root, usual if you defined roots in your config to separate dev and production or any other separation, all calls to the config will be prefixed with root. Root can be set in bootstrap when config is initialized.

$config = Config::instance()->setRoot('dev');
$locale = $config->get('locale');
$locale = Config::instance()->get('locale');

Config file syntax:

Documentation is still far from defined, all supported config's are listed and explained shortly in tests/files

Changelog:

v1.1.1 - Refactored parser

v1.1.0 - Added support for config roots - Added multiline support with filter support - More complete tests and config files with all supported syntaxes

v1.0.1 - The instance multione also creates an instance if not already created

v1.0.0 - Initial version

统计信息

  • 总下载量: 20
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-05-22