定制 opxcore/config 二次开发

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

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

opxcore/config

Composer 安装命令:

composer require opxcore/config

包简介

The OpxCore config.

README 文档

README

Build Status Coverage Status Latest Stable Version Total Downloads License

Config

Config is a component designed to load config for your project. It uses three components as dependency injection: config repository loader, config caching and environment variables. All of them set to config as dependency injection. In general, you can use standard components operating on local files. Also, you can make your own components for your purposes. Each of they must implement teh corresponding interface (see below).

Of course, these three components are optional. If component is not set, functionality it provides would not be able.

Creating

$config = new \OpxCore\Config\Config($repository, $cache, $environment);

Config repository

Config repository provides functionality for loading configuration. This component must implement ConfigRepositoryInterface.

Realization: ConfigRepositoryFiles

Config cache

This component provides functionality for configuration caching. This component must implement ConfigCacheInterface.

Realization: ConfigCacheFiles

Environment

This component provides functionality for defining configuration values via environment files. This component must implement EnvironmentInterface.

Realization: Environment

In case of environment is assigned to config, last one can use environment variables to configure cache driver.

# Is config caching disabled. true of false
CONFIG_CACHE_ENABLE=true
# Cache lifetime in seconds. null for forever
CONFIG_CACHE_TTL=null

Loading configuration

$config->load($profile, $overrides, $force);

$profile and $overrides are variables passed to config repository ( see repository) for more information.

If $forse is set to true, loading configuration from cache will bi skipped, as cached configuration was not found.

Accessing configuration

Config implements ArrayAccess interface, so you can use $config as an array.

Accessing to configuration is realized with Array so all operations with keys uses dot notation.

$config->has($key); same as isset($config[$key]); checks if value is defined;

$config->get($key, $default); same sa $config[$key]; gets value;

$config->set($key, $value); same as $config[$key] = $value; sets value;

$config->push($key, $value); pushes value;

$config->all(); returns all configuration array.

opxcore/config 适用场景与选型建议

opxcore/config 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 31 次下载、GitHub Stars 达 1, 最近一次更新时间为 2019 年 01 月 13 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 opxcore/config 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 opxcore/config 我们能提供哪些服务?
定制开发 / 二次开发

基于 opxcore/config 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-01-13