backtheweb / laravel-twig
Laravel Twig 2 集成
1.1.0
2022-01-10 12:45 UTC
Requires
- php: ^7.1|^8.0
- twig/extensions: ^1.5
- twig/twig: ^2.5
Requires (Dev)
This package is not auto-updated.
Last update: 2024-09-20 19:31:51 UTC
README
服务提供程序,用于集成 Twig2。受 TwigBridge 项目启发和修改,以与 twig2 一起工作。
安装
尚未加入 composer :(
快速开始
'providers' => [
...
Backtheweb\Twig\TwigServiceProvider::class,
],
'aliases' => [
...
'Twig' => Backtheweb\Twig\Facade\Twig::class,
],
php artisan vendor:publish --provider="Backtheweb\Twig\TwigServiceProvider"