torann/duct is a Laravel package for asset duct for laravel 4..
It currently has 1 GitHub stars and 130 downloads on Packagist (latest version 0.1.1).
Install it with composer require torann/duct.
Discover more Laravel packages by torann
or browse all Laravel packages to compare alternatives.
Last updated
The Torann/Duct package is meant to simplify the creation and maintenance of the essential assets of a Laravel based application.
With Laravel Elixir in Laravel 5 I'm not sure if this package will be updated to support Laravel 5. Time will tell.
To get the latest version of Asset Duct simply require it in your composer.json file.
"torann/duct": "0.1.*@dev"
You'll then need to run composer install to download it and have the autoloader updated.
Once Asset Duct 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\Duct\ServiceProvider'
There is no need to add the Facade, the package will add it for you.
$ php artisan config:publish torann/duct
The local assets directory needs to be added to the .gitignore file. This reflects the asset_dir variable in the config file.
public/assets/*
View the official documentation.