torann/assets is a Laravel package for simple asset management for laravel 4..
It currently has 1 GitHub stars and 302 downloads on Packagist (latest version 0.1.2-Beta).
Install it with composer require torann/assets.
Discover more Laravel packages by torann
or browse all Laravel packages to compare alternatives.
Last updated
The Torann/Assets package is meant to simplify the creation and maintenance of the essential assets of a Laravel 4 based application.
I do NOT plan to add support for other asset types like Coffeescript simply because I want to keep the package footprint as small as possible.
To get the latest version of Assets simply require it in your composer.json file.
"torann/assets": "dev-master"
You'll then need to run composer install to download it and have the autoloader updated.
Once Cells is installed you need to register the service provider with the application. Open up app/config/app.php and find the providers key.
Then register the service provider
'Torann\Assets\ManagerServiceProvider'
There is no need to add the Facade, the package will add it for you.
View the official documentation.