contenir/config
最新稳定版本:v0.2.0
Composer 安装命令:
composer require contenir/config
包简介
Framework-agnostic PHP-array config file reader/writer with atomic writes and opcache invalidation. Adapted from Laminas\Config.
README 文档
README
Framework-agnostic PHP-array config file reader and writer for Contenir CMS.
Reads and writes the <?php return [...]; config files that get merged into a Laminas/Mezzio site's configuration. Designed for the admin-writes / Site-reads pattern used by sibling packages like contenir/cache, contenir/maintenance, and contenir/errors.
The reader is tolerant — a missing, unreadable, or syntactically broken file resolves to an empty array rather than throwing, so first-run consumers can ask for state before any has been written. The writer is atomic — partial writes are never visible to readers, and concurrent writers can't race during the write/rename window.
Install
composer require contenir/config
Requires PHP 8.1+.
Usage
Reading
use Contenir\Config\Reader\PhpArray as ConfigReader; $config = ConfigReader::fromFile('/var/www/shared/pagecache.local.php');
$config is always an array — empty if the file doesn't exist, is unreadable, or contains a parse error.
Writing
use Contenir\Config\Writer\PhpArray as ConfigWriter; ConfigWriter::toFile($path, $config);
The optional third argument is a domain label that gets interpolated into error messages — sibling packages pass things like 'cache control', 'maintenance state', 'error pages' so failures surface with consumer-meaningful wording. Save errors throw Contenir\Config\Exception\WriteException, which extends \RuntimeException.
统计信息
- 总下载量: 5
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 8
- 依赖项目数: 3
- 推荐数: 3
其他信息
- 授权协议: MIT
- 更新时间: 2026-05-08