PHPackages                             hindy/template - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Templating &amp; Views](/categories/templating)
4. /
5. hindy/template

ActiveLibrary[Templating &amp; Views](/categories/templating)

hindy/template
==============

Fast PHP templating engine

1.0.3(10y ago)01151MITPHPPHP &gt;=5.3.0

Since Mar 7Pushed 10y ago1 watchersCompare

[ Source](https://github.com/hashstudio/Mindy_Template)[ Packagist](https://packagist.org/packages/hindy/template)[ RSS](/packages/hindy-template/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependenciesVersions (2)Used By (1)

Flow - Fast PHP Templating Engine
=================================

[](#flow---fast-php-templating-engine)

[![Build Status](https://camo.githubusercontent.com/7e807007950748ca6e2a0d3e7f1e24763be374fb7f56cd867a21e7a1d1cb5bf5/68747470733a2f2f7472617669732d63692e6f72672f73747564696f3130372f4d696e64795f54656d706c6174652e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/studio107/Mindy_Template)[![Coverage Status](https://camo.githubusercontent.com/6e2b8b2aa128d1d927d9d056e039cdd4cf4a85b230f58244014e9117d79c0f0d/68747470733a2f2f636f766572616c6c732e696f2f7265706f732f73747564696f3130372f4d696e64795f54656d706c6174652f62616467652e706e67)](https://coveralls.io/r/studio107/Mindy_Template)

Introduction
------------

[](#introduction)

Flow began life as a major fork of the original Twig templating engine by Armin Ronacher, which he made for [Chyrp](http://chyrp.net/), a blogging engine. Flow features template inheritance, includes, macros, custom helpers, autoescaping, whitespace control and many little features that makes writing templates enjoyable. Flow tries to give a consistent and coherent experience in writing clean templates. Flow compiles each template into its own PHP class; used with APC, this makes Flow a very fast and efficient templating engine. Templates can be read from files, loaded from string arrays, or even from databases with relative ease.

Installation
------------

[](#installation)

The easiest way to install is by using [Composer](http://getcomposer.org/); the minimum composer.json configuration is:

```
{
    "require": {
        "flow/flow": "0.7.*"
    }
}

```

Flow requires PHP 5.3 or newer. PHP 5.4 is strongly recommended.

Usage
-----

[](#usage)

Using Flow in your code is straight forward:

```
