A collection of Helpers and blade extensions for my gulp asset pipeline
ammonkc/bonzai-helper is a Laravel package for a collection of helpers and blade extensions for my gulp asset pipeline.
It currently has 0 GitHub stars and 59 downloads on Packagist (latest version 0.0.1).
Install it with composer require ammonkc/bonzai-helper.
Discover more Laravel packages by ammonkc
or browse all Laravel packages to compare alternatives.
Last updated
This Laravel 5 package with a collection of Helpers and blade extensions for my gulp asset pipeline
##Installation The package can be installed through Composer:
composer require ammonkc/bonzai-helper
This service provider must be installed:
//for laravel <=4.2: app/config/app.php
'providers' => [
...
'Ammonkc\BonzaiHelper\BonzaiHelperServiceProvider'
...
];
This package also comes with a facade, which provides an easy way to call the the functionality.
//for laravel <=4.2: app/config/app.php
'aliases' => array(
...
'Bonzai' => 'Ammonkc\BonzaiHelper\BonzaiHelperFacade',
...
)
##Configuration You can publish the configuration file using this command:
php artisan config:publish ammonkc/bonzai-helper
A configuration-file with some sensible defaults will be placed in your config/packages directory:
return
[
/**
* The url that points to the directory were your assets are stored
*
*/
'assetDir' => 'assets',
];