franzliedke / laravel-rain by franzliedke

The RainTPL template engine for Laravel.
24
4
3
Package Data
Maintainer Username: franzliedke
Maintainer Contact: franz@develophp.org (Franz Liedke)
Package Create Date: 2014-01-14
Package Last Update: 2014-01-21
Language: PHP
License: MIT
Last Refreshed: 2024-05-12 03:10:38
Package Statistics
Total Downloads: 24
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 4
Total Watchers: 3
Total Forks: 0
Total Open Issues: 0

laravel-rain

A Laravel driver for the lightweight PHP templating system RainTPL.

Installation with Composer

Step 1: Install package through Composer

Add this line to the require section of your composer.json:

"franzl/laravel-rain": "dev-master"

Alternately, you can use the Composer command-line tool by running this command:

composer require franzl/laravel-rain

Next, run composer install to actually install the package.

Step 2: Register the service provider

In your Laravel application, edit the app/config/app.php file and add this line to the providers array:

'Franzl\LaravelRain\LaravelRainServiceProvider',

Usage

Once installed, you can use Laravel's view system as you always do. Files ending in .dust.php will automatically be treated as RainTPL templates. As long as you don't try to combine things like Blade layouts and Rain's includes, everything should go well.