Casset Package for Laravel 5
This package is baset on https://github.com/mmanos/laravel-casset, (*1)
Casset is an asset manager for Laravel 5 applications. Some things it can do:, (*2)
- Create one or more asset containers.
- Compile less files.
- Combine assets into one file.
- Minify output.
- Accept assets from Laravel package public directories.
"package::/js/file.js"
- Define dependencies for an asset.
- Define global dependencies for all assets of the same file type.
- Define an optional CDN for asset URLs.
- Optionally defer processing/combining assets to a controller (useful when distributing page requests across multiple servers).
Installation via Composer
Add this to your composer.json file, in the require object:, (*3)
"simexis/laravel-casset": "dev-master"
After that, run composer install to install Casset., (*4)
Add the service provider to app/config/app.php
, within the providers
array., (*5)
'providers' => array(
// ...
Simexis\Casset\CassetServiceProvider::class,
)
Add a class alias to app/config/app.php
, within the aliases
array., (*6)
'aliases' => array(
// ...
'Casset' => Simexis\Casset\Facades\Casset::class,
)
Finally, ensure the cache directory defined in the config file is created
and writable by the web server (defaults to public/assets/cache)., (*7)
$ mkdir public/assets/cache
$ chmod -R 777 public/assets/cache
$ touch public/assets/cache/.gitignore
Edit public/assets/cache/.gitignore., (*8)
*
!.gitignore
Usage
Add assets to the "default" container:, (*9)
Casset::add('js/jquery.js');
Casset::add('less/layout.less');
Add assets to a custom container:, (*10)
Casset::container('layout')->add('js/jquery.js');
Casset::container('layout')->add('less/layout.less');
Add an asset with a dependency on another asset:, (*11)
Casset::add('less/variables.less');
Casset::add('less/layout.less', array(), array('less/variables.less'));
Add a global dependency for all assets (of the same file type):, (*12)
Casset::dependency('less/variables.less');
Casset::container('layout')->dependency('less/variables.less');
Add assets from a composer package (vendorName/packageName):, (*13)
Casset::add('frameworks/jquery::/jquery.min.js');
Render HTML tags to load assets for a container:, (*14)
{!! Casset::container('default')->styles() !!}
{!! Casset::container('layout')->scripts() !!}
Generate a URL to an asset on the CDN server:, (*15)
<img src="{{ Casset::cdn('logo.png') }}" />