LaravelPackages.net
Acme Inc.
Toggle sidebar
dennisenderink/asset

Laravel 4 Assets Manage

1.262
0
About dennisenderink/asset

dennisenderink/asset is a Laravel package for laravel 4 assets manage. It currently has 0 GitHub stars and 1.262 downloads on Packagist. Install it with composer require dennisenderink/asset. Discover more Laravel packages by dennisenderink or browse all Laravel packages to compare alternatives.

Last updated

A port of Laravel 3's Asset class. Made to work with Laravel 4.

Usage

Composer Side

add "dennisenderink/asset": "dev-master" to the require section of your composer.json so that it should look something the code below.

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

Laravel Side

add the following code to the providers section of the app/config/app.php file

'Dennisenderink\Asset\AssetServiceProvider',

so that it'll look something like the following

'providers' => array(

	...
	...
	...
	'Dennisenderink\Asset\AssetServiceProvider',

),

and add the following code to the aliases section of the app/config/app.php file

'Asset' => 'Dennisenderink\Asset\Facades\Asset'

so that it'll look something like the following

'aliases' => array(

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

),
Comments