davidjegat/assetic-minifier-bundle

A complete minifier in pure PHP for your assetic. Using Douglas Crockford JSMin and Tubal Martin CssMin

Installs: 181

Dependents: 0

Suggesters: 0

Security: 0

Stars: 8

Watchers: 0

Forks: 1

Open Issues: 1

Type:symfony-bundle

pkg:composer/davidjegat/assetic-minifier-bundle

dev-master 2013-03-22 18:18 UTC

This package is not auto-updated.

Last update: 2025-10-11 18:06:35 UTC


README

Build Status

An assetic minifier in pure PHP for CSS and JS files. This bundle use JSMin and CssMin

Instalation

Add this line into your composer.json :

"davidjegat/assetic-minifier-bundle": "*"

Enable the bundle into your AppKernel.php :

new DavidJegat\AsseticMinifierBundle\DavidJegatAsseticMinifierBundle()

# Use the minifier

Once the bundle is install yo can use the filter minify_js and minify_css for enable the minify.

{% stylesheets 
	'my.css'
	filter="?minify_css"
%}
	<link rel="stylesheet" type="text/css" href="{{asset_url}}">

{% endstylesheets %}