axis/axis-assetic-plugin

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

symfony 1.x plugin that integrates Assetic into symfony

dev-master 2013-01-11 01:49 UTC

This package is not auto-updated.

Last update: 2020-05-01 16:45:46 UTC


README

This plugin that integrates Assetic into symfony

Installation

Use Composer. Just add this dependency to your composer.json:

  "require": {
    "axis/axis-assetic-plugin": "dev-master"
  }

Optional vendor libraries

CssMin

To use CssMin minifier add natxet/CssMin dependency to your project's composer.json.

LessPHP

To use LessPHP compiler add leafo/lessphp dependency to your project's composer.json.

JavascriptPacker

To use Javascript packer include Dean Edwards 's Packer library into your project.

JSMin

To use JSMin minifier add nick4fake/jsmin dependency to your project's composer.json.

JSMinPlus

To use JSMinPlus minifier include Tino Zijdel's JSMinPlus class into your project.

PhpCssEmbed

To use PhpCssEmbed filter add ptachoire/cssembed dependency to your project's composer.json.

ScssPhp

To use ScssPhp filter add leafo/scssphp dependency to your project's composer.json.

Usage

You can use all Assetic functionality in your project. Also plugin defines all standard Assetic filters using factories.yml and additionally custom FilterManager that aware how to retrieve all that filters.

$filterManager = sfContext::getInstance()->get('assetic.filter_manager');
$filterManager->get('css_min');

Note: AxisAsseticPlugin uses factories.yml configuration supported by AxisServiceContainerPlugin