| Package Data | |
|---|---|
| Maintainer Username: | Zae |
| Maintainer Contact: | ezra@tsdme.nl (Ezra Pool) |
| Package Create Date: | 2014-10-19 |
| Package Last Update: | 2014-10-19 |
| Language: | PHP |
| License: | Unknown |
| Last Refreshed: | 2025-11-03 15:24:31 |
| Package Statistics | |
|---|---|
| Total Downloads: | 1,291 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 1 |
| Total Watchers: | 1 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
Easy Assetic management for Laravel 4 projects.
Installation via composer is very easy, simply add the package to your composer.json:
"require": {
"zae/larattic": "~0.1"
}
Or download the code and add the namespace to your autoloader or simply require() the files.
Laravel 4 Facade:
<?php
Larattic::asset('css')
This project has an MIT license. See the LICENSE file for details.
The project uses assetic to manage your assets.
The project has pre-build filters for oyejorge/less.php less compiler.
The project has a pre-build filter for mattcg/cjsdelivery.
The project has easy L4 integration using it's ServiceProvider and Facade.
add the ServiceProvider to your list of providers in the config/app file:
'providers' => array(
'Zae\Larattic\LaratticServiceProvider'
)
and the Facade to the list of aliases in the config/app file:
'aliases' => array(
'Larattic'v=> 'Zae\Larattic\Facades\Larattic'
)
Ezra Pool ezra@tsdme.nl