PHPackages                             man/jade - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Templating &amp; Views](/categories/templating)
4. /
5. man/jade

ActiveLibrary[Templating &amp; Views](/categories/templating)

man/jade
========

Laravel Jade templating Engine from native Jade binaries for Mac OSX/Linux/Unix

111332[4 issues](https://github.com/thesli/laravel-jade-engine-package/issues)[2 PRs](https://github.com/thesli/laravel-jade-engine-package/pulls)PHP

Since Jan 15Pushed 12y ago4 watchersCompare

[ Source](https://github.com/thesli/laravel-jade-engine-package)[ Packagist](https://packagist.org/packages/man/jade)[ RSS](/packages/man-jade/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependenciesVersions (1)Used By (0)

Laravel Jade Templating Engine
==============================

[](#laravel-jade-templating-engine)

This is my first Laravel package for my friend's Final Year Project,hope you like it.

Requirement
-----------

[](#requirement)

- Laravel 4
- Jade executable (install from sudo npm install -g jade)
- \*It may not work on windows machine(you can try cygwin and the like)

Installation
------------

[](#installation)

In your composer.json add "man/jade": "dev-master" to require

#### composer.json

[](#composerjson)

```
{
	//...
	"require": {
		"laravel/framework": "*",
		"man/jade": "dev-master"
	},
	//...
}
```

Run the command composer update in terminal

#### bash

[](#bash)

```
composer update
```

after that in app/config/app.php add 'Man\\Jade\\JadeServiceProvider' to 'providers' and 'Jade' =&gt; 'Man\\Jade\\Jade' to alias

#### app.php

[](#appphp)

```
