dearon/slim-mustache

Mustache View Parser package for the Slim Framework


Keywords
templating, mustache, extensions, slimphp
License
MIT

Documentation

Slim Mustache

This repository contains a custom View class for Mustache.php. You can use the custom View class by either requiring the appropriate class in your Slim Framework bootstrap file and initialize your Slim application using an instance of the selected View class or using Composer (the recommended way).

How to Install

using Composer

Create a composer.json file in your project root:

{
    "require": {
        "dearon/slim-mustache": "0.1.*"
    }
}

Then run the following composer command:

$ php composer.phar install

How to use

<?php
require 'vendor/autoload.php';

$app = new \Slim\Slim(array(
    'view' => new \Slim\Mustache\Mustache()
));

To use Mustache options do the following:

$view = $app->view();
$view->parserOptions = array(
    'charset' => 'ISO-8859-1'
);

Authors

Remco Meeuwissen

License

MIT Public License