Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

82 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Templex

A lightweight, regex based template rendering engine for PHP

Latest Stable Version Total Downloads PHP Version Require 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

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

Contributing

Contributions are welcome! Please see contributing.md for guidelines on how to contribute to this project.

License

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

About

A lightweight, regex based template rendering engine for PHP

Resources

Stars

1 star

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages