backtheweb / laravel-twig
Laravel Twig 2 integration
Installs: 222
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Forks: 0
pkg:composer/backtheweb/laravel-twig
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-10-18 00:17:45 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"