hofa/lumen-twig

Adds the power of Twig to Lumen
37 1
Install
composer require hofa/lumen-twig
Latest Version:v1.0.0
PHP:>=5.3.0
License:MIT
Last Updated:May 12, 2019
Links: GitHub  ·  Packagist
Maintainer: hofa

lumenTwig

lumen support twig template

install

composer require hofa/lumen-twig

bootsrap/app.php

$app->register(LumenTwig\TwigServiceProvider::class);

uses

view('tests/index.twig', ['a' => 1]);
touch resource/view/tests/index.twig

twig global variable

{{ reqeust.input('query', 1)}}
{{ app('hash').make('a123456')}}
{{ session...}} {{ url...}} {{ auth...}}