hofa / lumen-twig
为Lumen添加Twig的强大功能
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-09-24 05:10:50 UTC
README
Lumen支持Twig模板
安装
composer require hofa/lumen-twig
bootsrap/app.php
$app->register(LumenTwig\TwigServiceProvider::class);
使用
view('tests/index.twig', ['a' => 1]);
创建资源视图 tests/index.twig
Twig全局变量
{{ reqeust.input('query', 1)}}
{{ app('hash').make('a123456')}}
{{ session...}} {{ url...}} {{ auth...}}