承接 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.

统计信息

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

GitHub 信息

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

其他信息

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

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固