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

ActiveLibrary

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 3d 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

29

—

LowBetter than 59% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity60

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

2743d ago

### Community

Maintainers

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

![](https://www.gravatar.com/avatar/398e46df56f8428891ac5447f9dccf4a12c1dc183e6988449ebb4d39d102ab68?d=identicon)[yfhub](/maintainers/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.3k1.5M3](/packages/shopware-platform)[sulu/sulu

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

1.3k1.3M152](/packages/sulu-sulu)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

595.2M386](/packages/shopware-core)[ssch/typo3-rector

Instant fixes for your TYPO3 PHP code by using Rector.

2592.8M263](/packages/ssch-typo3-rector)[contao/core-bundle

Contao Open Source CMS

1231.6M2.4k](/packages/contao-core-bundle)[brianhenryie/strauss

Prefixes dependencies namespaces so they are unique to your plugin

183340.9k20](/packages/brianhenryie-strauss)

PHPackages © 2026

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