kaiseki / config
Type-safe access to array configurations
Requires
- php: ^8.2
- psr/container: ^1.1 || ^2.0
- thecodingmachine/safe: ^1.3 || ^2.0
Requires (Dev)
- bnf/phpstan-psr-container: ^1.1
- kaiseki/php-coding-standard: ^1.0
- maglnet/composer-require-checker: ^4.0
- phpstan/extension-installer: ^1.4
- phpstan/phpstan: ^2.0
- phpstan/phpstan-phpunit: ^2.0
- phpstan/phpstan-strict-rules: ^2.0
- phpunit/phpunit: ^11.0
- roave/security-advisories: dev-latest
- thecodingmachine/phpstan-safe-rule: ^1.4
- dev-master
- 2.0.0
- 1.7.0
- 1.6.0
- 1.5.0
- 1.4.0
- 1.3.0
- 1.2.0
- 1.1.1
- 1.1.0
- 1.0.0
- dev-chore/centralize-changelog-and-bump-notify-site
- dev-dependabot/github_actions/github-actions-1730de5550
- dev-chore/dependabot-config-sync
- dev-ci/harden-notify-site
- dev-ci/notify-docs-site
- dev-ci/changelog-app-token
- dev-dependabot/composer/thecodingmachine/safe-tw-1.3or-tw-2.0or-tw-3.0
- dev-delimiter
This package is auto-updated.
Last update: 2026-06-03 12:40:19 UTC
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)
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.