linkorb/stamp
Composer 安装命令:
composer require linkorb/stamp
包简介
Stamp: Generate files from templates and data files
README 文档
README
Stamp generate files by applying data to templates.
Use-cases:
- Generate common repository files like README.md, LICENSE, .gitignore, etc (by combining stamp with metaculous)
- Static site generator
- Documentation generator
Installation
composer require linkorb/stamp --dev
Usage
vendor/bin/stamp --help
How does it work?
When you run stamp generate, Stamp will look for it's configuration in a file called stamp.yaml in the current directory. You can also pass a specify config file using -c.
Stamp will then loop through the templates defined in the config file, and use the template files defined by the src key, and generate the file defined by the dest key.
By specifying an items key, one template may be applied multiple times, resulting in multiple output files.
By specifying a variables key, the variables at the template level will get merged with the project level variables before being passed to the template, allowing you to override/add variables at the template level.
stamp.yml example:
Here's a simple example stamp.yml file:
variables: title: Hello world license: mit templates: - src: stamp/README.md.twig dest: README.md variables: title: Hello world README file - src: https://raw.githubusercontent.com/IQAndreas/markdown-licenses/master/{{ license }}.md dest: LICENSE - src: https://raw.githubusercontent.com/gitlabhq/gitlabhq/master/CONTRIBUTING.md dest: CONTRIBUTING.md
Simply type stamp generate (or vendor/bin/stamp generate) in the root of your project, and the listed files will be (re)generated based on their templates.
Using URLs as templates allow you to manage your templates in one location (a git repository), making it easy to update your projects based on updated templates.
Stamp supports multiple template languages/engines, which will be used based on the template file (src) file extension:
.twig: Use the Twig template language.hbs,.handlebars: Use the Handlebars template language (powered by LightnCandy).mustache: Use the Mustache template language (powered by LightnCandy)
Variables and functions
Stamp is using the LinkORB Loader library for loading the stamp.yaml file.
It therefor supports all features related to variables, includes and functions that the loader does.
Development / debugging:
The examples/ directory contains an example configuration (stamp.yaml) and template files.
License
MIT. Please refer to the license file for details.
Brought to you by the LinkORB Engineering team
Check out our other projects at linkorb.com/engineering.
Btw, we're hiring!
linkorb/stamp 适用场景与选型建议
linkorb/stamp 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 386 次下载、GitHub Stars 达 3, 最近一次更新时间为 2018 年 11 月 11 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「linkorb」 「stamp」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 linkorb/stamp 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 linkorb/stamp 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 linkorb/stamp 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
统计信息
- 总下载量: 386
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 6
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-11-11