backtheweb / laravel-twig
Laravel Twig 2 integration
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: 2025-03-21 21:49:15 UTC
README
Service provider to integrate Twig2. Work "inspired" and "adapted" to work with twig2 from the project TwigBridge
Installation
Not in composer yet :(
Quick Start
'providers' => [
...
Backtheweb\Twig\TwigServiceProvider::class,
],
'aliases' => [
...
'Twig' => Backtheweb\Twig\Facade\Twig::class,
],
php artisan vendor:publish --provider="Backtheweb\Twig\TwigServiceProvider"