andrewslince/slim3-mustache-view

PHP Mustache view class for Slim 3 Framework

1.0.5 2016-11-27 12:34 UTC

This package is not auto-updated.

Last update: 2024-04-27 18:13:59 UTC


README

Build Status Latest Stable Version Scrutinizer Code Quality License

A PHP Mustache class for render views on Slim 3 Framework.

Requirements

  • Slim 3.0.0 or newer;
  • PHP 5.6 or newer.

Install

Via Composer:

$ composer require andrewslince/slim3-mustache-view

Usage

<?php

$app = new \Slim\App([
    // your application settings
]);

// get application container
$container = $app->getContainer();

// register view template engine and configurations
$container['renderer'] = function () {
    return new \Slim\Views\Mustache([

        // REQUIRED
        'template' => [

            // REQUIRED
            'paths' => [
                realpath('./templates')
            ],

            // optional
            'extension' => 'html',

            // optional
            'charset' => 'utf-8',
        ],

        // put other mustache options here¹
    ]);
};

// use the render() method in your application routes
$app->get('/', function ($request, $response, $args) {

    // render your view
    return $this->renderer->render(
        $response,
        'index',
        $args
    );
});

$app->run();

NOTES:

¹ See other Mustache options here.

Testing

To running unit tests, executes the command below:

./vendor/bin/phpunit -c phpunit.xml.dist

Contributing

Please see CONTRIBUTING for details.

Credits

License

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