hofa / lumen-twig
Adds the power of Twig to Lumen
v1.0.0
2019-05-12 02:04 UTC
Requires
- php: >=5.3.0
- twig/twig: ~1.15
This package is not auto-updated.
Last update: 2024-11-19 06:04:30 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...}}