2017 © Pedro Peláez
 

library assetic

Asset Management for PHP

image

kriswallsmith/assetic

Asset Management for PHP

  • Friday, November 11, 2016
  • by kriswallsmith
  • Repository
  • 146 Watchers
  • 3662 Stars
  • 24,458,637 Installations
  • PHP
  • 284 Dependents
  • 14 Suggesters
  • 561 Forks
  • 318 Open issues
  • 25 Versions
  • 4 % Grown

The README.md

Assetic Build Status

Assetic is an asset management framework for PHP., (*1)

Project status

This project is not maintained anymore. Development has been taken over at https://github.com/assetic-php/assetic under the package name assetic/framework., (*2)

Example

``` php <?php, (*3)

use Assetic\Asset\AssetCollection; use Assetic\Asset\FileAsset; use Assetic\Asset\GlobAsset;, (*4)

$js = new AssetCollection(array( new GlobAsset('/path/to/js/*'), new FileAsset('/path/to/another.js'), ));, (*5)

// the code is merged when the asset is dumped echo $js->dump();, (*6)


Assets ------ An Assetic asset is something with filterable content that can be loaded and dumped. An asset also includes metadata, some of which can be manipulated and some of which is immutable. | **Property** | **Accessor** | **Mutator** | |--------------|-----------------|---------------| | content | getContent | setContent | | mtime | getLastModified | n/a | | source root | getSourceRoot | n/a | | source path | getSourcePath | n/a | | target path | getTargetPath | setTargetPath | The "target path" property denotes where an asset (or an collection of assets) should be dumped. Filters ------- Filters can be applied to manipulate assets. ``` php <?php use Assetic\Asset\AssetCollection; use Assetic\Asset\FileAsset; use Assetic\Asset\GlobAsset; use Assetic\Filter\LessFilter; use Assetic\Filter\Yui; $css = new AssetCollection(array( new FileAsset('/path/to/src/styles.less', array(new LessFilter())), new GlobAsset('/path/to/css/*'), ), array( new Yui\CssCompressorFilter('/path/to/yuicompressor.jar'), )); // this will echo CSS compiled by LESS and compressed by YUI echo $css->dump();

The filters applied to the collection will cascade to each asset leaf if you iterate over it., (*7)

``` php <?php, (*8)

foreach ($css as $leaf) { // each leaf is compressed by YUI echo $leaf->dump(); }, (*9)


The core provides the following filters in the `Assetic\Filter` namespace: * `AutoprefixerFilter`: Parse and update vendor-specific properties using autoprefixer * `CoffeeScriptFilter`: compiles CoffeeScript into Javascript * `CompassFilter`: Compass CSS authoring framework * `CssEmbedFilter`: embeds image data in your stylesheets * `CssImportFilter`: inlines imported stylesheets * `CssMinFilter`: minifies CSS * `CleanCssFilter`: minifies CSS * `CssRewriteFilter`: fixes relative URLs in CSS assets when moving to a new URL * `DartFilter`: compiles Javascript using dart2js * `EmberPrecompileFilter`: precompiles Handlebars templates into Javascript for use in the Ember.js framework * `GoogleClosure\CompilerApiFilter`: compiles Javascript using the Google Closure Compiler API * `GoogleClosure\CompilerJarFilter`: compiles Javascript using the Google Closure Compiler JAR * `GssFilter`: compliles CSS using the Google Closure Stylesheets Compiler * `HandlebarsFilter`: compiles Handlebars templates into Javascript * `JpegoptimFilter`: optimize your JPEGs * `JpegtranFilter`: optimize your JPEGs * `JSMinFilter`: minifies Javascript * `JSMinPlusFilter`: minifies Javascript * `JSqueezeFilter`: compresses Javascript * `LessFilter`: parses LESS into CSS (using less.js with node.js) * `LessphpFilter`: parses LESS into CSS (using lessphp) * `OptiPngFilter`: optimize your PNGs * `PackagerFilter`: parses Javascript for packager tags * `PackerFilter`: compresses Javascript using Dean Edwards's Packer * `PhpCssEmbedFilter`: embeds image data in your stylesheet * `PngoutFilter`: optimize your PNGs * `ReactJsxFilter`: compiles React JSX into JavaScript * `Sass\SassFilter`: parses SASS into CSS * `Sass\ScssFilter`: parses SCSS into CSS * `SassphpFilter`: parses Sass into CSS using the sassphp bindings for Libsass * `ScssphpFilter`: parses SCSS using scssphp * `SeparatorFilter`: inserts a separator between assets to prevent merge failures * `SprocketsFilter`: Sprockets Javascript dependency management * `StylusFilter`: parses STYL into CSS * `TypeScriptFilter`: parses TypeScript into Javascript * `UglifyCssFilter`: minifies CSS * `UglifyJs2Filter`: minifies Javascript * `UglifyJsFilter`: minifies Javascript * `Yui\CssCompressorFilter`: compresses CSS using the YUI compressor * `Yui\JsCompressorFilter`: compresses Javascript using the YUI compressor Asset Manager ------------- An asset manager is provided for organizing assets. ``` php <?php use Assetic\AssetManager; use Assetic\Asset\FileAsset; use Assetic\Asset\GlobAsset; $am = new AssetManager(); $am->set('jquery', new FileAsset('/path/to/jquery.js')); $am->set('base_css', new GlobAsset('/path/to/css/*'));

The asset manager can also be used to reference assets to avoid duplication., (*10)

``` php <?php, (*11)

use Assetic\Asset\AssetCollection; use Assetic\Asset\AssetReference; use Assetic\Asset\FileAsset;, (*12)

$am->set('my_plugin', new AssetCollection(array( new AssetReference($am, 'jquery'), new FileAsset('/path/to/jquery.plugin.js'), )));, (*13)


Filter Manager -------------- A filter manager is also provided for organizing filters. ``` php <?php use Assetic\FilterManager; use Assetic\Filter\Sass\SassFilter; use Assetic\Filter\Yui; $fm = new FilterManager(); $fm->set('sass', new SassFilter('/path/to/parser/sass')); $fm->set('yui_css', new Yui\CssCompressorFilter('/path/to/yuicompressor.jar'));

Asset Factory

If you'd rather not create all these objects by hand, you can use the asset factory, which will do most of the work for you., (*14)

``` php <?php, (*15)

use Assetic\Factory\AssetFactory;, (*16)

$factory = new AssetFactory('/path/to/asset/directory/'); $factory->setAssetManager($am); $factory->setFilterManager($fm); $factory->setDebug(true);, (*17)

$css = $factory->createAsset(array( '@reset', // load the asset manager's "reset" asset 'css/src/*.scss', // load every scss files from "/path/to/asset/directory/css/src/" ), array( 'scss', // filter through the filter manager's "scss" filter '?yui_css', // don't use this filter in debug mode ));, (*18)

echo $css->dump();, (*19)


The `AssetFactory` is constructed with a root directory which is used as the base directory for relative asset paths. Prefixing a filter name with a question mark, as `yui_css` is here, will cause that filter to be omitted when the factory is in debug mode. You can also register [Workers](src/Assetic/Factory/Worker/WorkerInterface.php) on the factory and all assets created by it will be passed to the worker's `process()` method before being returned. See _Cache Busting_ below for an example. Dumping Assets to static files ------------------------------ You can dump all the assets an AssetManager holds to files in a directory. This will probably be below your webserver's document root so the files can be served statically. ``` php <?php use Assetic\AssetWriter; $writer = new AssetWriter('/path/to/web'); $writer->writeManagerAssets($am);

This will make use of the assets' target path., (*20)

Cache Busting

If you serve your assets from static files as just described, you can use the CacheBustingWorker to rewrite the target paths for assets. It will insert an identifier before the filename extension that is unique for a particular version of the asset., (*21)

This identifier is based on the modification time of the asset and will also take depended-on assets into consideration if the applied filters support it., (*22)

``` php <?php, (*23)

use Assetic\Factory\AssetFactory; use Assetic\Factory\Worker\CacheBustingWorker;, (*24)

$factory = new AssetFactory('/path/to/asset/directory/'); $factory->setAssetManager($am); $factory->setFilterManager($fm); $factory->setDebug(true); $factory->addWorker(new CacheBustingWorker());, (*25)

$css = $factory->createAsset(array( '@reset', // load the asset manager's "reset" asset 'css/src/*.scss', // load every scss files from "/path/to/asset/directory/css/src/" ), array( 'scss', // filter through the filter manager's "scss" filter '?yui_css', // don't use this filter in debug mode ));, (*26)

echo $css->dump();, (*27)


Internal caching ------- A simple caching mechanism is provided to avoid unnecessary work. ``` php <?php use Assetic\Asset\AssetCache; use Assetic\Asset\FileAsset; use Assetic\Cache\FilesystemCache; use Assetic\Filter\Yui; $yui = new Yui\JsCompressorFilter('/path/to/yuicompressor.jar'); $js = new AssetCache( new FileAsset('/path/to/some.js', array($yui)), new FilesystemCache('/path/to/cache') ); // the YUI compressor will only run on the first call $js->dump(); $js->dump(); $js->dump();

Twig

To use the Assetic [Twig][3] extension you must register it to your Twig environment:, (*28)

``` php <?php, (*29)

$twig->addExtension(new AsseticExtension($factory));, (*30)


Once in place, the extension exposes a stylesheets and a javascripts tag with a syntax similar to what the asset factory uses: ``` html+jinja {% stylesheets '/path/to/sass/main.sass' filter='sass,?yui_css' output='css/all.css' %} <link href="{{ asset_url }}" type="text/css" rel="stylesheet" /> {% endstylesheets %}

This example will render one link element on the page that includes a URL where the filtered asset can be found., (*31)

When the extension is in debug mode, this same tag will render multiple link elements, one for each asset referenced by the css/src/*.sass glob. The specified filters will still be applied, unless they are marked as optional using the ? prefix., (*32)

This behavior can also be triggered by setting a debug attribute on the tag:, (*33)

``` html+jinja {% stylesheets 'css/*' debug=true %} ... {% stylesheets %}, (*34)


These assets need to be written to the web directory so these URLs don't return 404 errors. ``` php <?php use Assetic\AssetWriter; use Assetic\Extension\Twig\TwigFormulaLoader; use Assetic\Extension\Twig\TwigResource; use Assetic\Factory\LazyAssetManager; $am = new LazyAssetManager($factory); // enable loading assets from twig templates $am->setLoader('twig', new TwigFormulaLoader($twig)); // loop through all your templates foreach ($templates as $template) { $resource = new TwigResource($twigLoader, $template); $am->addResource($resource, 'twig'); } $writer = new AssetWriter('/path/to/web'); $writer->writeManagerAssets($am);

Assetic is based on the Python webassets library (available on GitHub)., (*35)

The Versions

12/11 2015
12/12 2014

v1.1.3

1.1.3.0 https://github.com/kriswallsmith/assetic

Asset Management for PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

assets compression minification

12/12 2014

v1.0.5

1.0.5.0 https://github.com/kriswallsmith/assetic

Asset Management for PHP

  Sources   Download

MIT

The Requires

  • php >=5.3.1

 

assets compression minification

12/12 2014

v1.2.1

1.2.1.0 https://github.com/kriswallsmith/assetic

Asset Management for PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

assets compression minification

14/10 2014

v1.2.0

1.2.0.0 https://github.com/kriswallsmith/assetic

Asset Management for PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

assets compression minification

08/07 2014

v1.2.0-alpha1

1.2.0.0-alpha1 https://github.com/kriswallsmith/assetic

Asset Management for PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

assets compression minification

19/07 2013

v1.1.2

1.1.2.0 https://github.com/kriswallsmith/assetic

Asset Management for PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

assets compression minification

02/06 2013

v1.1.1

1.1.1.0 https://github.com/kriswallsmith/assetic

Asset Management for PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

assets compression minification

16/05 2013

v1.1.0

1.1.0.0 https://github.com/kriswallsmith/assetic

Asset Management for PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

assets compression minification

13/05 2013

v1.1.0-beta1

1.1.0.0-beta1 https://github.com/kriswallsmith/assetic

Asset Management for PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

assets compression minification

24/02 2013

v1.1.0-alpha4

1.1.0.0-alpha4 https://github.com/kriswallsmith/assetic

Asset Management for PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

assets compression minification

18/02 2013

v1.1.0-alpha3

1.1.0.0-alpha3 https://github.com/kriswallsmith/assetic

Asset Management for PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

assets compression minification

31/01 2013

v1.1.0-alpha2

1.1.0.0-alpha2 https://github.com/kriswallsmith/assetic

Asset Management for PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

assets compression minification

09/01 2013

dev-node-visitor

dev-node-visitor https://github.com/kriswallsmith/assetic

Asset Management for PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

assets compression minification

28/08 2012

v1.1.0-alpha1

1.1.0.0-alpha1 https://github.com/kriswallsmith/assetic

Asset Management for PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

assets compression minification

28/08 2012

v1.0.4

1.0.4.0 https://github.com/kriswallsmith/assetic

Asset Management for PHP

  Sources   Download

MIT

The Requires

  • php >=5.3.1

 

assets compression minification

23/05 2012

dev-experimental/tree

dev-experimental/tree https://github.com/kriswallsmith/assetic

Asset Management for PHP

  Sources   Download

MIT

The Requires

 

assets compression minification

27/04 2012

dev-pipeline-asset-locator

dev-pipeline-asset-locator https://github.com/kriswallsmith/assetic

Asset Management for PHP 5.3

  Sources   Download

MIT

The Requires

 

The Development Requires

assets compression minification

19/03 2012

dev-asset-locator

dev-asset-locator https://github.com/kriswallsmith/assetic

Asset Management for PHP 5.3

  Sources   Download

MIT

The Requires

 

assets compression minification

03/03 2012

v1.0.3

1.0.3.0 https://github.com/kriswallsmith/assetic

Asset Management for PHP 5.3

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

assets compression minification

06/02 2012

dev-output-collisions

dev-output-collisions https://github.com/kriswallsmith/assetic

Asset Management for PHP 5.3

  Sources   Download

MIT

The Requires

 

assets compression minification