定制 serhiilabs/inscribe 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

serhiilabs/inscribe

Composer 安装命令:

composer require serhiilabs/inscribe

包简介

Fluent template builder for composing text from reusable parts

README 文档

README

Latest Version on Packagist Tests Total Downloads License

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 我们能提供哪些服务?
定制开发 / 二次开发

基于 serhiilabs/inscribe 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 1
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 20
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-01-26