codin/config
Composer 安装命令:
composer require codin/config
包简介
Basic config file load supports PHP ans Json files
README 文档
README
Lightweight configuration file loader that supports PHP and JSON files
$ cat path/to/config/foos.php <?php return ['foo' => 'bar']; $ cat path/to/config/bars.json {"bar":"baz"}
$config = Codin\Config\Config::create('path/to/config'); $config->has('foos.foo'); // true $config->get('foos.foo'); // "bar" $config->has('bars'); // true $config->get('bars'); // ['bar' => 'baz']
统计信息
- 总下载量: 5
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2021-10-28