zae / larattic
Easy Assetic management for Laravel 4 projects.
Installs: 1 290
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: >=5.4.0
- illuminate/support: ~4.2.0
- kriswallsmith/assetic: ~1.2
This package is auto-updated.
Last update: 2024-11-10 10:35:32 UTC
README
Easy Assetic management for Laravel 4 projects.
Install
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.
Usage
Laravel 4 Facade:
<?php Larattic::asset('css')
About
License
This project has an MIT license. See the LICENSE
file for details.
Assetic
The project uses assetic to manage your assets.
Oyejorge/less.php
The project has pre-build filters for oyejorge/less.php less compiler.
cjsDelivery
The project has a pre-build filter for mattcg/cjsdelivery.
Laravel
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' )
Author
Ezra Pool ezra@tsdme.nl
TODO
- Provide tests.
- SOLIDify the project further.