arrounded/assets

This package is abandoned and no longer maintained. No replacement package was suggested.

The description of the module

2.0.0 2016-03-12 22:25 UTC

This package is auto-updated.

Last update: 2019-11-15 14:46:32 UTC


README

Build Status Latest Stable Version Total Downloads Scrutinizer Quality Score Code Coverage

Install

Via Composer

$ composer require arrounded/assets

Usage

Assets pipeline

To use the assets pipeline create a config/assets.php file. In it you can define various collection of assets:

<?php return [
    'global' => [
        'css' => [
            'foo.css',
        ],
    ],
    'admin'  => [
        'css' => ['admin.css'],
        'js'  => ['admin.js'],
    ],
];

Add its service provider in config/app.php

Arrounded\Assets\ServiceProvider::class,

Then add the facade in the same file:

'Assets' => Arrounded\Assets\Facades\Assets::class,

Now in your views you can call this class to output a collection of assets:

{{ Assets.styles('global') }}
{{ Assets.scripts('admin') }}

AssetsReplacer

When going to production, you don't want to leave the Assets.styles and Assets.scripts calls as is as they will return the assets individually. The AssetsReplacer class will replace these calls with their actual values so usemin can read them and consume them.

$replacer = new AssetsReplacer($assetsHandler);
$replacer->replaceInFolder('resources/views');

JavascriptBridge

This is a class to pass data to the front-end. You can pass it as globals or namespaced. It's a static class so you can call it anywhere:

JavascriptBridge::add(['foo' => 'bar']);
JavascriptBridge::render(); // var foo = "bar";

JavascriptBridge::setNamespace('Arrounded');
JavascriptBridge::add(['foo' => 'bar']);
JavascriptBridge::render(); // var Arrounded = {}; Arrounded.foo = "bar";

It can also render classes implementing the Jsonable interface.

Testing

$ composer test

License

The MIT License (MIT). Please see License File for more information.