ammonkc/bonzai-helper

A collection of Helpers and blade extensions for my gulp asset pipeline
59
Install
composer require ammonkc/bonzai-helper
Latest Version:0.0.1
PHP:>=5.4.0
License:MIT
Last Updated:Mar 23, 2016
Links: GitHub  ·  Packagist
Maintainer: ammonkc

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',
];

Related Packages

lsrur/toolbelt

Set of PHP helper functions wrapped for Laravel.

40,571 2
jgile/php-helpers

PHP helpers influenced by underscore.js and laravel helpers.

49 0
igaster/laravel-theme

Laravel Themes: Asset & Views folder per theme. Theme inheritance. Blade integra...

1,257,366 515
tooleks/laravel-asset-version

The Laravel Assets Versioning Package

46,085 7
hailwood/smartless4laravel

An advanced LESS PHP compiler package for Laravel4 based on the LESSisMore L3 bu...

199