ony / twigbridge
Adds the power of Twig to Laravel
Requires
- php: >=7.1
- illuminate/support: ^5.5|^6|^7
- illuminate/view: ^5.5|^6|^7
- ony/twig: dev-master
Requires (Dev)
- laravel/framework: 5.5.*
- mockery/mockery: 0.9.*
- phpunit/phpunit: ~6.0
- satooshi/php-coveralls: ~0.6
- squizlabs/php_codesniffer: ~1.5
Suggests
- twig/extensions: ~1.0
This package is not auto-updated.
Last update: 2025-03-30 12:10:52 UTC
README
Require this package with Composer
composer require cfkarakulak/Twigra
Quick Start
Once Composer has installed or updated your packages you need to register Twigra with Laravel itself. Open up config/app.php and find the providers key, towards the end of the file, and add 'Twigra\ServiceProvider', to the end:
'providers' => [
Twigra\ServiceProvider::class,
],
Now find the aliases key, again towards the end of the file, and add 'Twig' => 'Twigra\Facade\Twig', to have easier access to the Twigra (or Twig\Environment):
'aliases' => [
'Twig' => Twigra\Facade\Twig::class,
],
Pass config (twigra.php to local config path)
At this point you can now begin using twig like you would any other view
//app/Http/routes.php
//twig template resources/views/hello.twig
Route::get('/', function () {
return View::make('hello');
});
You can create the twig files in resources/views with the .twig file extension.
resources/views/hello.twig