backtheweb/laravel-twig

Laravel Twig 2 integration

Installs: 222

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Forks: 0

pkg:composer/backtheweb/laravel-twig

1.1.0 2022-01-10 12:45 UTC

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"