praxigento/composer_plugin_templates
Composer 安装命令:
composer require praxigento/composer_plugin_templates
包简介
Composer plugin to create locally specific configuration from set of template files and from file with configuration parameters.
README 文档
README
What is this?
Plugin for PHP Composer to create locally specific configuration from set of template files and files with configuration parameters. Templates processing is occurred before any composer command (excluding 'install' cause plugin is not installed before command have been executed).
Installation
Add to your project's composer.json:
{
"require": {
"praxigento/composer_plugin_templates": "*"
}
}
Usage
Setup configuration file
Create plugin's configuration file ( ./templates.json, for example) and setup extra.praxigento_templates_config parameter in your project's composer.json::
{
"extra": {
"praxigento_templates_config": "./templates.json"
}
}
Plugin can use more than one configuration file, data from all files will be merged into one config structure:
{
"extra": {
"praxigento_templates_config": ["./under_vc.json", "./not_under_vc.json"]
}
}
This can be useful in case when set of templates is the same for all instances (this part of configuration can be under version control) and variables (all or part of them) are unique for each instance.
Configuration file structure
./templates.json:
{
"vars": {
"MYSQL_HOST": "localhost",
"MYSQL_USER": "magento_github_user",
"MYSQL_PASSWORD": "s8pTo3X5QCsr4SkY48zF",
"MYSQL_DBNAME": "magento_github_db"
},
"templates": {
"local.xml": {
"src": "test/tmpl/local.xml",
"dst": "test/mage/app/etc/local.xml",
"rewrite": true
},
"dump.sh": {
"src": "test/tmpl/dump.sh",
"dst": "test/bin/dump_db/dump.sh",
"rewrite": true
}
}
}
vars
Set of the template's placeholders ${MYSQL_HOST} and values localhost to be inserted into templates:
{
"vars": {
"MYSQL_HOST": "localhost",
"MYSQL_USER": "magento_github_user",
"MYSQL_PASSWORD": "s8pTo3X5QCsr4SkY48zF",
"MYSQL_DBNAME": "magento_github_db"
}
}
templates
Set of the templates to be processed on every composer command (install, update, status, ...):
{
"templates": {
"local.xml": {
"src": "test/tmpl/local.xml",
"dst": "test/mage/app/etc/local.xml",
"rewrite": true
},
"dump.sh": {
"src": "test/tmpl/dump.sh",
"dst": "test/bin/dump_db/dump.sh",
"rewrite": true,
"condition": {
"var": "MYSQL_HOST",
"operation": "!=",
"value": "localhost"
}
}
}
}
Labels (local.xml & dump.sh) are for reference only.
- src: (required) path to template file;
- dst: (required) path to result file (where placeholders are replaced by its values);
- rewrite: 'true' to rewrite destination file if exists ('false' by default);
- condition: simple condition to process this template file;
- var: name of the variable for left part of the condition;
- operation: one of the two operations ('=' or '!=');
- value: string value for compare (right part of the operation);
License
All contents of this package are licensed under the MIT license.
praxigento/composer_plugin_templates 适用场景与选型建议
praxigento/composer_plugin_templates 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 2.99k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2015 年 01 月 12 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 praxigento/composer_plugin_templates 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 praxigento/composer_plugin_templates 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 2.99k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 18
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-01-12
