backtheweb/laravel-twig

Laravel Twig 2 integration

1.1.0 2022-01-10 12:45 UTC

This package is not auto-updated.

Last update: 2024-05-03 17:53:38 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"