2017 © Pedro Peláez
 

library asset

Laravel 4 Assets Manage

image

teepluss/asset

Laravel 4 Assets Manage

  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 20 Forks
  • 1 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

A port of Laravel 3's Asset class. Made to work with Laravel 4., (*1)

Usage

Composer Side

add "teepluss/asset": "dev-master" to the require section of your composer.json so that it should look something the code below., (*2)

...
...
...
"require": {
    ...
    ...
    ...
    "teepluss/asset": "dev-master"
},
...
...
...

Laravel Side

add the following code to the providers section of the app/config/app.php file, (*3)

'Teepluss\Asset\AssetServiceProvider',

so that it'll look something like the following, (*4)

'providers' => array(

    ...
    ...
    ...
    'Teepluss\Asset\AssetServiceProvider',

),

and add the following code to the aliases section of the app/config/app.php file, (*5)

'Asset' => 'Teepluss\Asset\Facades\Asset'

so that it'll look something like the following, (*6)

'aliases' => array(

    ...
    ...
    ...
    'Asset'       => 'Teepluss\Asset\Facades\Asset',

),

The Versions

18/08 2013

dev-master

9999999-dev https://github.com/teepluss/laravel4-asset

Laravel 4 Assets Manage

  Sources   Download

MIT

The Requires

 

laravel assets asset laravel4