cohensive / asset
Assets manager for Laravel.
Installs: 3 961
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 15
pkg:composer/cohensive/asset
Requires
- php: >=5.5.9
- illuminate/support: ~5
Requires (Dev)
- phpunit/phpunit: 3.7.*
This package is not auto-updated.
Last update: 2025-10-24 17:42:42 UTC
README
A simple assets manager for Laravel 5.
Notes
Latest supported version for Laravel 4 is 2.4.* (e.g v2.4.3)
Branch dev-master is for development and is unstable
Installation
Run the following command and provide the latest stable version (e.g v2.5.4) :
composer require roumen/asset
or add the following to your composer.json file :
"roumen/asset": "2.5.*"
Then register this service provider with Laravel :
'Roumen\Asset\AssetServiceProvider',
and add class alias for easy usage
'Asset' => 'Roumen\Asset\Asset',
Don't forget to use composer update and composer dump-autoload when is needed!