serhiilabs/inscribe
Composer 安装命令:
composer require serhiilabs/inscribe
包简介
Fluent template builder for composing text from reusable parts
README 文档
README
A fluent template builder for composing text from reusable parts. Build AI prompts, email bodies, notifications, and any structured text by combining modular template files.
Why Inscribe?
Building complex text output often means concatenating strings, managing conditionals, and losing track of what goes where. Inscribe solves this by letting you:
- Compose text from reusable parts - Write each section once, use it everywhere
- Keep templates in separate files - Easy to find, edit, and version control
- Use placeholders with context - Global defaults with local overrides
- Build fluently - Chain methods for readable, maintainable code
Perfect for:
- AI Prompts - Combine system instructions, context, and user input
- Email Templates - Mix headers, bodies, and signatures
- Notifications - Assemble messages from reusable blocks
- Any structured text - Documentation, reports, messages
Quick Example
Instead of this:
$prompt = "You are a helpful assistant.\n\n"; $prompt .= "Context: The user is asking about {$topic}.\n\n"; $prompt .= "User question: {$question}\n\n"; $prompt .= "Please provide a detailed answer.";
You write templates:
<!-- resources/inscribe/ai/system.md -->
You are a helpful assistant.
<!-- resources/inscribe/ai/context.md -->
Context: The user is asking about {{topic}}.
<!-- resources/inscribe/ai/instruction.md -->
Please provide a detailed answer.
And compose them:
use SerhiiLabs\Inscribe\Facades\Inscribe; $prompt = Inscribe::make() ->context(['topic' => 'Laravel']) ->include('ai.system') ->include('ai.context') ->raw('User question: {{question}}', ['question' => $userInput]) ->include('ai.instruction') ->build();
Clean, readable, and each piece is reusable.
Requirements
- PHP 8.3+
- Laravel 12.x
Installation
composer require serhiilabs/inscribe
The package auto-registers with Laravel. No additional setup required.
Configuration
Publish the config file (optional):
php artisan vendor:publish --tag=inscribe-config
Usage
Basic Usage
Create template files in your templates directory:
<!-- resources/inscribe/email/header.md -->
Hello, {{name}}!
<!-- resources/inscribe/email/footer.md -->
Best regards,
{{sender}}
Build your text:
use SerhiiLabs\Inscribe\Contracts\TemplateBuilderInterface; class EmailService { public function __construct( private TemplateBuilderInterface $templates, ) {} public function buildEmail(string $name): string { return $this->templates->make() ->context(['sender' => 'Support Team']) ->include('email.header', ['name' => $name]) ->include('email.footer') ->build(); } }
Dot Notation
Template names map to file paths:
email.header -> resources/inscribe/email/header.md
email.campaigns.welcome -> resources/inscribe/email/campaigns/welcome.md
notifications.alert -> resources/inscribe/notifications/alert.md
Template names must:
- Start with a letter or underscore
- Contain only alphanumeric characters, underscores, hyphens
- Use dots as path separators
Context (Placeholders)
Use {{placeholder}} syntax in templates. Provide values via context.
Global context only - applies to all parts:
$text = Inscribe::make() ->context(['name' => 'John', 'company' => 'Acme']) ->include('greeting') // Has access to name and company ->include('signature') // Has access to name and company ->build();
Local context only - per-part values:
$text = Inscribe::make() ->include('greeting', ['name' => 'John']) ->include('signature', ['name' => 'Support Team']) ->build();
Combined - global defaults with local overrides:
$text = Inscribe::make() ->context(['name' => 'Guest', 'date' => 'today']) ->include('greeting') // name=Guest, date=today ->include('greeting', ['name' => 'John']) // name=John, date=today ->include('farewell', ['date' => 'tomorrow']) // name=Guest, date=tomorrow ->build();
Priority: Local context always wins over global for the same key.
Raw Text
Add text without a template file:
$text = Inscribe::make() ->include('email.header') ->raw('PS: {{note}}', ['note' => 'Thanks for reading!']) ->include('email.footer') ->build();
Custom Separators
Control how parts are joined:
// Double newline between paragraphs $text = Inscribe::make() ->separator("\n\n") ->include('intro') ->include('body') ->include('conclusion') ->build(); // No separator (direct concatenation) $text = Inscribe::make() ->separator('') ->include('prefix') ->include('suffix') ->build();
Using the Facade
use SerhiiLabs\Inscribe\Facades\Inscribe; $text = Inscribe::make() ->include('template.name') ->build();
API Reference
| Method | Description |
|---|---|
make() |
Create a new builder instance |
context(array $data) |
Set global context for all parts |
separator(string $sep) |
Set separator between parts (default: \n) |
include(string $name, array $context = []) |
Add a template by dot-notation name |
raw(string $text, array $context = []) |
Add raw text with optional placeholders |
build() |
Compile and return the final string |
Exceptions
| Exception | When |
|---|---|
TemplateNotFoundException |
Template file not found |
UnboundPlaceholderException |
Placeholder in template but not in context |
InvalidArgumentException |
Invalid template name format |
All exceptions extend InscribeException for easy catching.
Artisan Commands
List Templates
php artisan inscribe:list
php artisan inscribe:list --all # Show all without limit
Displays available templates as a tree:
Available templates:
├── email/
│ ├── header
│ └── footer
└── notifications/
└── alert
Total: 3 template(s)
Validate Templates
php artisan inscribe:validate
Checks placeholder syntax in all templates. Detects:
- Spaces in braces:
{{ name }}(should be{{name}}) - Invalid starting characters:
{{123name}} - Invalid characters:
{{user.name}},{{user@name}}
Testing
composer test
Changelog
Please see CHANGELOG for recent changes.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Security
If you discover a security vulnerability, please email serhiilabs@gmail.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.
serhiilabs/inscribe 适用场景与选型建议
serhiilabs/inscribe 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 01 月 26 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「text」 「email」 「fluent」 「notifications」 「templates」 「builder」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 serhiilabs/inscribe 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 serhiilabs/inscribe 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 serhiilabs/inscribe 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Texy converts plain text in easy to read Texy syntax into structurally valid (X)HTML. It supports adding of images, links, nested lists, tables and has full support for CSS. Texy supports hyphenation of long words (which reflects language rules), clickable emails and URL (emails are obfuscated again
Presentation and Formatting helper with nice fluent interface.
Traits gathering fluent syntax common methods
A modern, fluent HTTP client. Forked from Mashape, reimagined by Nidux, and open-sourced for the PHP community.
Common libraries used by Zimbra Api
A fluent PHP CURL wrapper
统计信息
- 总下载量: 1
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 20
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-01-26