2017 © Pedro Peláez
 

library asset

Easy asset Management for Laravel 4

image

lightgear/asset

Easy asset Management for Laravel 4

  • Saturday, March 1, 2014
  • by ralf57
  • Repository
  • 2 Watchers
  • 26 Stars
  • 1,965 Installations
  • PHP
  • 6 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 7 Versions
  • 0 % Grown

The README.md

Discountinued

This project has been discountinued since there are better way to handle assets nowadays.
I switched to Gulp.js and will not get back.
This repository will be kept in case somebody uses it in production., (*1)

Simple and effective assets management for Laravel 4

Overview

The Lightgear/Asset package is meant to simplify the creation and maintenance of the essential assets of a Laravel 4 based application., (*2)

Features

  • Supported asset types: "less", "css"" and "javascript" files. I do NOT plan to add support for other types like Coffeescript simply because I want to keep the package footprint as small as possible.
  • Combining and minifying (any combination of the two) are fully supported
  • Simple but effective caching support is provided. This avoids generation of the assets on every request. Caching needs to be turned on in the config (since you probably only want to do this on production).
  • Asset groups

Installation

Via Laravel 4 Package Installer

php artisan package:install lightgear/asset

Manual

Just require, (*3)

"lightgear/asset": "1.1"

in your composer.json and run, (*4)

composer update

Then register the service provider, (*5)

'Lightgear\Asset\AssetServiceProvider'

and, optionally, the alias, (*6)

'Asset' => 'Lightgear\Asset\Facades\Asset'

in app/config/app.php, (*7)

Publish configuration with, (*8)

php artisan config:publish lightgear/asset

This will ceate the app/config/packages/lightgear/asset/config.php file., (*9)

Finally create the directory specified as "public_dir" in the config file and give it full writing permissions., (*10)

Usage

All you need to do is register your assets with either registerStyles() or registerScripts() methods. Important: assets need to be registered in a file which is always loaded (ex. in a package's ServiceProvider). For example, to register a package assets you would use something like this in your service provider:, (*11)

/**
     * Register the service provider.
     *
     * @return void
     */
    public function register()
    {
        $styles = array(
            'src/assets/styles',
            'src/assets/pure/pure/pure-min.css'
        );

        $asset = $this->app->make('asset');

        // register styles of a vendor package and assign them
        // to the default "general" group
        $asset->registerStyles($styles, 'vendor/package');

        // register styles of a vendor package and assign them
        // to the "frontend" group
        $asset->registerStyles($styles, 'vendor/package', 'frontend');

        // the same goes with scripts for whom you would use for example
        $asset->registerScripts(array('src/scripts')), 'vendor/package');
    }

or you could register assets located in app/assets with, (*12)

Asset::registerStyles(array(
        'css/shared.less'
    )
);
or
Asset::registerScripts(array(
        'js/shared.js'
    )
);

As you notice in the examples both files and directories can be registered. It's worth noticing that directories are added recursively., (*13)

Configuration

A number of config options allow you to customize the handling of the assets. Please check src/config/config.php for details., (*14)

Templating

The assets can be printed out in a (blade) template by using, (*15)

// prints all the registered styles
{{ Asset::styles() }}

// prints only the "frontend" group
{{ Asset::styles('frontend') }}

// prints the "frontend" and "mygroup" groups
{{ Asset::styles(array('frontend', 'mygroup')) }}

and the same syntax is used for the scripts, (*16)

{{ Asset::scripts() }}

Artisan commands

The package comes with 2 commands:, (*17)

php artisan asset:clean

which deletes all published and cached assets and, (*18)

php artisan asset:generate

which generates and publishes the registered assets, (*19)

Permissions

If you experience permissions issues when running the above commands, it's because the user running artisan is different from the one that generates the assets through the webserver (www-data for example). The issue is explained in greater details at http://symfony.com/doc/current/book/installation.html#configuration-and-setup To fix the issue it's enough to follow the steps outlined in this page. For example on Ubuntu I run the following commands from the project root, (*20)

sudo setfacl -R -m u:www-data:rwX -m u:`whoami`:rwX public/assets
sudo setfacl -dR -m u:www-data:rwX -m u:`whoami`:rwX public/assets

When using caching, you would need to do the same, (*21)

sudo setfacl -R -m u:www-data:rwX -m u:`whoami`:rwX app/storage
sudo setfacl -dR -m u:www-data:rwX -m u:`whoami`:rwX app/storage

Changelog

1.1: Laravel 4.1 compatibility
1.0: add support for asset groups and improve cache handling
0.8: initial release, (*22)

The Versions

01/03 2014

dev-develop

dev-develop

Easy asset Management for Laravel 4

  Sources   Download

The Requires

 

01/03 2014

dev-master

9999999-dev

Easy asset Management for Laravel 4

  Sources   Download

The Requires

 

20/12 2013

2.0.0

2.0.0.0

Easy asset Management for Laravel 4

  Sources   Download

The Requires

 

30/11 2013

1.2

1.2.0.0

Easy asset Management for Laravel 4

  Sources   Download

The Requires

 

13/11 2013

1.1

1.1.0.0

Easy asset Management for Laravel 4

  Sources   Download

The Requires

 

05/11 2013

1.0

1.0.0.0

Easy asset Management for Laravel 4

  Sources   Download

The Requires

 

29/10 2013

0.8

0.8.0.0

Easy asset Management for Laravel 4

  Sources   Download

The Requires