dev-master
9999999-dev https://github.com/teepluss/laravel4-assetLaravel 4 Assets Manage
MIT
The Requires
- php >=5.3.0
- illuminate/support 4.0.x
by Teepluss
laravel assets asset laravel4
Laravel 4 Assets Manage
A port of Laravel 3's Asset class. Made to work with Laravel 4., (*1)
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" }, ... ... ...
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', ),
Laravel 4 Assets Manage
MIT
laravel assets asset laravel4