PHPackages                             shippinno/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. shippinno/template

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

shippinno/template
==================

A small package for handling template text files.

v1.0.4(7y ago)02.1k1PHPPHP &gt;=7.1

Since Nov 1Pushed 2y ago4 watchersCompare

[ Source](https://github.com/shippinno/template-php)[ Packagist](https://packagist.org/packages/shippinno/template)[ RSS](/packages/shippinno-template/feed)WikiDiscussions master Synced 2w ago

READMEChangelog (5)Dependencies (7)Versions (7)Used By (1)

Template
========

[](#template)

[![Scrutinizer Code Quality](https://camo.githubusercontent.com/a5c4d1302ff18f360c9fb7f328d754c9d31d6bdfaa8c4f20f34acfa6eba719d4/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f7368697070696e6e6f2f74656d706c6174652d7068702f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/shippinno/template-php/?branch=master)[![Code Coverage](https://camo.githubusercontent.com/def2932de6aedaaccd88c2cd67a83fa8d728c40be9753c839a99c43667c75332/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f7368697070696e6e6f2f74656d706c6174652d7068702f6261646765732f636f7665726167652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/shippinno/template-php/?branch=master)[![Build Status](https://camo.githubusercontent.com/ebc686ac0dd149b60525357aededd7a8f9b2cdc5738442374a7158c94b491dba/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f7368697070696e6e6f2f74656d706c6174652d7068702f6261646765732f6275696c642e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/shippinno/template-php/build-status/master)

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

[](#installation)

```
$ composer require shippinno/template

```

Usage
-----

[](#usage)

Assume that you have a [Liquid](https://shopify.github.io/liquid/) template file in the local filesystem like below.

```
$ tree -d /templates
/templates
`-- hello.liquid
$
$ cat /templates/hello.liquid
Hello, {{ you }} !!

```

It is super easy to load that template and render with variables.

```
use League\Flysystem\Adapter\Local;
use League\Flysystem\Filesystem;
use Shippinno\Template\Liquid;

$filesystem = new Filesystem(new Local('/templates'));
$liquid = new Liquid($filesystem);
$liquid->render('hello', ['you' => 'Shippinno']); // => 'Hello, Shippinno !!'

```

Template files can be on any “filesystem” as far as [Flysystem](http://flysystem.thephpleague.com/docs/) supports it.

```
use Spatie\Dropbox\Client;
use Spatie\FlysystemDropbox\DropboxAdapter;

$client = new Client('AUTH_TOKEN');
$filesystem = new Filesystem(new DropboxAdapter($client));
$liquid = new Liquid($filesystem);
// ...

```

Or you can also just render with a template source.

```
$twig = new Twig;
$twig->renderSource('Hello, {{ you }} !!', ['you' => 'Shipiinno']); // => 'Hello, Shippinno !!'

```

###  Health Score

30

—

LowBetter than 62% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~2 days

Total

5

Last Release

2791d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/5c0c43c3f3e8303e9cbefffe9886a7f7b4f4f05f76c756f7b654c8d1d30d6d79?d=identicon)[tanigami](/maintainers/tanigami)

![](https://avatars.githubusercontent.com/u/22097897?v=4)[y-Fukui](/maintainers/yfhub)[@yfhub](https://github.com/yfhub)

---

Top Contributors

[![tanigami](https://avatars.githubusercontent.com/u/86785?v=4)](https://github.com/tanigami "tanigami (19 commits)")

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/shippinno-template/health.svg)

```
[![Health](https://phpackages.com/badges/shippinno-template/health.svg)](https://phpackages.com/packages/shippinno-template)
```

###  Alternatives

[shopware/platform

The Shopware e-commerce core

3.4k1.5M3](/packages/shopware-platform)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

585.4M528](/packages/shopware-core)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.4M196](/packages/sulu-sulu)[open-dxp/opendxp

Content &amp; Product Management Framework (CMS/PIM)

9417.2k58](/packages/open-dxp-opendxp)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
