kaiseki/config
Composer 安装命令:
composer require kaiseki/config
包简介
Type-safe access to array configurations
README 文档
README
Type-safe access to array configurations, with dot-notation paths.
Wrap a config array (or pull one from a PSR-11 container) and read values with typed accessors that
throw on a missing key or a wrong type — so a typo or a misconfigured value fails loudly instead of
silently returning null.
Installation
composer require kaiseki/config
Requires PHP 8.2 or newer.
Usage
use Kaiseki\Config\NestedArrayConfig; $config = new NestedArrayConfig([ 'db' => [ 'host' => 'localhost', 'port' => 3306, ], ]); $config->string('db.host'); // "localhost" $config->int('db.port'); // 3306 $config->has('db.user'); // false
Paths are dot-separated. Typed getters (string(), int(), float(), bool(), array()) throw
UnknownKeyException if the path is missing and InvalidValueException if the value is not of the
expected type.
Defaults and nullables
$config->string('db.user', 'root'); // default when the key is absent $config->get('db.password', null, true); // allow null (nullable)
Typed lists
stringList(), intList(), and floatList() read the array at a key and narrow it to a
list<string> / list<int> / list<float>, dropping any element of the wrong type and
re-indexing the result:
$config = new NestedArrayConfig(['paths' => ['/a', 42, '/b']]); $config->stringList('paths'); // ['/a', '/b'] — the 42 is dropped, keys re-indexed
They behave like array() for the key itself: a missing key throws UnknownKeyException and a
non-array value throws InvalidValueException, unless a default list is supplied:
$config->stringList('paths', []); // [] when the key is absent
String-keyed maps
stringKeyedArray() narrows the array at a key to an array<string, mixed>, dropping any
integer-keyed elements while keeping the string keys — handy for reading an options map where a
stray list entry would otherwise leak in:
$config = new NestedArrayConfig(['opts' => ['public' => true, 0 => 'ignored', 'label' => 'X']]); $config->stringKeyedArray('opts'); // ['public' => true, 'label' => 'X']
It follows the same missing-key / wrong-type rules as array().
From a PSR-11 container
Config::fromContainer() reads the config entry from a container:
use Kaiseki\Config\Config; $config = Config::fromContainer($container); // expects $container->get('config')
Config::initClassMap() resolves a map of keys to class instances from the container:
$map = Config::initClassMap($container, ['logger' => LoggerInterface::class]); // ['logger' => <instance from container>]
Development
composer install
composer check # check-deps, cs-check, phpstan, phpunit
License
MIT — see LICENSE.
kaiseki/config 适用场景与选型建议
kaiseki/config 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 3.19k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2023 年 04 月 26 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 kaiseki/config 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 kaiseki/config 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 3.19k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 4
- 依赖项目数: 30
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-04-26