myerscode/templex

A lightweight, regex based template rendering engine

Maintainers

Package info

github.com/myerscode/templex

pkg:composer/myerscode/templex

Statistics

Installs: 25

Dependents: 1

Suggesters: 0

Stars: 1

Open Issues: 1

2025.1.0 2025-08-14 21:57 UTC

README

A lightweight, regex based template rendering engine for PHP

Latest Stable Version PHP Version Require Total Downloads License Tests codecov

Why this package is helpful?

Templex lets you define stubs and hydrate them using PHP variables. The engine uses regex for all processing — no eval(), no including and running code as PHP. This means you can safely generate new PHP files, config files, or any text-based content from templates.

Requirements

  • PHP 8.5 or higher

Install

composer require myerscode/templex

Quick Start

use Myerscode\Templex\Templex;

$templex = new Templex(__DIR__ . '/templates/', 'stub');

echo $templex->render('welcome', ['name' => 'Fred']);

Where templates/welcome.stub contains:

Hello <{ $name }>!

Documentation

  • Templates — template syntax, file types, and configuration
  • Slots — includes, conditions, loops, switch statements, and variables

Example Guides

Issues and Contributing

We are very happy to receive pull requests to add functionality or fixes.

Bug reports and feature requests can be submitted on the Github Issue Tracker.

Please read the Myerscode contributing guide for information on our Code of Conduct.

License

The MIT License (MIT). Please see License File for more information.