loadsys/cakephp-config-read
Composer 安装命令:
composer require loadsys/cakephp-config-read
包简介
A CakePHP plugin that provides a Shell to read an app's Configure vars from the command line.
关键字:
README 文档
README
A CakePHP plugin that provides a Shell to read an app's Configure vars from the command line.
Installation
Use the following as a guide for choosing your version based on the version of CakePHP installed.
| CakePHP | ConfigReadShell Plugin | Tag | Notes |
|---|---|---|---|
| ^3.4 | master | 4.0.0 | stable |
| 3.3 | 3.3 | 3.0.0 | stable |
| 2.5 | 2.x | 2.0.1 | stable |
| 1.3 | 1.x | 1.0.1 | stable |
This will install the latest version.
$ composer require loadsys/cakephp-config-read:~4.0
Note: we don't expect to actively maintain or improve the 1.3 version. It's here because the project started life as a 1.3 Shell.
Requirements
- PHP 7.0+
- CakePHP 3.6.0+
Usage
Imagine the following defined in config/app.php:
return [ 'Key' => [ 'Name' => 'foo', ], 'Second' => [ 'Key' => [ 'First' => 'bar', 'Second' => 'baz', 'Third' => 42, ], ], ];
To use this plugin, call it from the command line:
$ cd path/to/app/ $ ./bin/cake config_read Key.Name 'foo'
Format as a bash variable definition
$ ./bin/cake ConfigRead.ConfigRead Key.Name Second.Key KEY_NAME='foo' SECOND_KEY_FIRST='bar' SECOND_KEY_SECOND='baz' SECOND_KEY_THIRD='42'
Note that this format is automatically used whenever more than one key is returned (unless the --serialize switch has been used). For example, if you request a key that contains an array, all values in the array will be returned sequentially. Alternatively, if you pass multiple keys on the command line, they will all be returned. The format can also be forced using the -b or --bash command line switch:
$ ./bin/cake config_read -b Key.Name
KEY_NAME='foo'
Serializing output
It is possible serialize the output from ConfigReadShell so that it can be consumed by other PHP scripts more easily by using the -s or --serialize command line switch.
Requesting multiple keys on the command line will produce an array of those keys. Requesting a single scalar value will produce only that scalar value.
This switch always overrides both the --bash switch and the Shell's automatic bash formatting.
$ ./bin/cake config_read -s Key.Name Second.Key
a:2:{s:8:"Key.Name";s:3:"foo";s:10:"Second.Key";a:3:{s:5:"First";s:3:"bar";s:6:"Second";s:3:"baz";s:5:"Third";i:42;}}
# Check the result by piping into PHP and unserializing the result.
$ ./bin/cake ConfigRead.ConfigRead -s Key.Name Second.Key | php -r 'print_r(unserialize(file_get_contents("php://stdin")));'
Array
(
[Key.Name] => foo
[Second.Key] => Array
(
[First] => bar
[Second] => baz
[Third] => 42
)
)
Potential Gotchas
"Consumed" Configure Vars
CakePHP 3 by default "consumes" some of its configs so as not to confuse developers. Configure::consume() removes the configuration key from Configure, making it unavailable to the rest of the app. At the time of this writing, it does this for the following keys/classes:
[Configure.Key] |
Class::configEnumerationMethod() |
Class::configFetchMethod() |
|---|---|---|
[Cache] |
Cache::configured() |
Cache::getConfig() |
[Datasources] |
ConnectionManager::configured() |
ConnectionManager::getConfig() |
[EmailTransport] |
Email::configuredTransport() |
Email::getConfigTransport() |
[Email] |
Email::configured() |
Email::getConfig() |
[Log] |
Log::configured() |
Log::getConfig() |
[Security.salt] |
(none) | Security::getSalt() |
The ConfigReadShell devotes about half of its codebase dealing with this for you, allowing you to continue to fetch values using the Configure path (Datasources.default.host -> localhost) while in the background it is actually querying ConnectionManager::getConfig('default')['host']. (This is particularly helpful if you are using Environment-Aware Configs.)
The "gotcha" here is that ConfigReadShell has to maintain a hard-coded list of Configure keys that are normally consumed, and how to access them in their new container. This is further complicated by the fact that not all consumed configs are loaded into or retrieved from their containers the same way, although the base assumption is that the container implements the StaticConfigTrait and so will have ::getConfig() and ::configured() available.
⚠️ If your app uses Configure::consume() on any non-standard Configure key during bootstrapping, you will not be able to obtain any child values of those keys from the ConfigReadShell.
Contributing
Code of Conduct
This project has adopted the Contributor Covenant as its code of conduct. All contributors are expected to adhere to this code. Translations are available.
Reporting Issues
Please use GitHub Isuses for listing any known defects or issues.
Development
When developing this plugin, please fork and issue a PR for any new development.
License
Copyright
loadsys/cakephp-config-read 适用场景与选型建议
loadsys/cakephp-config-read 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 16.77k 次下载、GitHub Stars 达 3, 最近一次更新时间为 2015 年 04 月 14 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「cakephp」 「shell」 「configure」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 loadsys/cakephp-config-read 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 loadsys/cakephp-config-read 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 loadsys/cakephp-config-read 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
CakePHP 4.x AdminLTE Theme.
AMWSCAN (Antimalware Scanner) is a php antimalware/antivirus scanner console script written in php for scan your project. This can work on php projects and a lot of others platform.
Shell command module for PHP.
PHP library for the MUMSYS project
Settings plugin for CakePHP
PHP Automation Tools
统计信息
- 总下载量: 16.77k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 18
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-04-14