ammonkc / bonzai-helper by ammonkc

A collection of Helpers and blade extensions for my gulp asset pipeline
54
0
2
Package Data
Maintainer Username: ammonkc
Maintainer Contact: ammon@caseyohana.com (Ammon Casey)
Package Create Date: 2015-01-16
Package Last Update: 2016-03-23
Language: PHP
License: MIT
Last Refreshed: 2024-04-16 15:01:03
Package Statistics
Total Downloads: 54
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

This Laravel 5 package with a collection of Helpers and blade extensions for my gulp asset pipeline

This package assumes that your 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',
];