hofa/lumen-twig

Adds the power of Twig to Lumen

v1.0.0 2019-05-12 02:04 UTC

This package is not auto-updated.

Last update: 2024-05-21 03:08:25 UTC


README

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...}}