| Package Data | |
|---|---|
| Maintainer Username: | teepluss |
| Maintainer Contact: | admin@laravel.in.th (Teepluss) |
| Package Create Date: | 2013-04-03 |
| Package Last Update: | 2013-08-18 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-10-26 03:07:33 |
| Package Statistics | |
|---|---|
| Total Downloads: | 2,858 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 21 |
| Total Watchers: | 3 |
| Total Forks: | 16 |
| Total Open Issues: | 1 |
A port of Laravel 3's Asset class. Made to work with Laravel 4.
add "teepluss/asset": "dev-master" to the require section of your composer.json so that it should look something the code below.
...
...
...
"require": {
...
...
...
"teepluss/asset": "dev-master"
},
...
...
...
add the following code to the providers section of the app/config/app.php file
'Teepluss\Asset\AssetServiceProvider',
so that it'll look something like the following
'providers' => array(
...
...
...
'Teepluss\Asset\AssetServiceProvider',
),
and add the following code to the aliases section of the app/config/app.php file
'Asset' => 'Teepluss\Asset\Facades\Asset'
so that it'll look something like the following
'aliases' => array(
...
...
...
'Asset' => 'Teepluss\Asset\Facades\Asset',
),