dev-master
9999999-dev https://github.com/dennisenderink/laravel4-assetLaravel 4 Assets Manage
MIT
The Requires
- php >=5.3.0
- illuminate/support 4.x
by Dennis Enderink
laravel assets asset laravel4
Wallogit.com
2017 © Pedro Peláez
Laravel 4 Assets Manage
A port of Laravel 3's Asset class. Made to work with Laravel 4., (*1)
add "dennisenderink/asset": "dev-master" to the require section of your composer.json so that it should look something the code below., (*2)
...
...
...
"require": {
...
...
...
"dennisenderink/asset": "dev-master"
},
...
...
...
add the following code to the providers section of the app/config/app.php file, (*3)
'Dennisenderink\Asset\AssetServiceProvider',
so that it'll look something like the following, (*4)
'providers' => array(
...
...
...
'Dennisenderink\Asset\AssetServiceProvider',
),
and add the following code to the aliases section of the app/config/app.php file, (*5)
'Asset' => 'Dennisenderink\Asset\Facades\Asset'
so that it'll look something like the following, (*6)
'aliases' => array(
...
...
...
'Asset' => 'Dennisenderink\Asset\Facades\Asset',
),
Laravel 4 Assets Manage
MIT
laravel assets asset laravel4