Lines Matching refs:Assetic

1 # Assetic [![Build Status](https://travis-ci.org/kriswallsmith/assetic.png?branch=master)](https://…
3 Assetic is an asset management framework for PHP.
8 use Assetic\Asset\AssetCollection;
9 use Assetic\Asset\FileAsset;
10 use Assetic\Asset\GlobAsset;
24 An Assetic asset is something with filterable content that can be loaded and
46 use Assetic\Asset\AssetCollection;
47 use Assetic\Asset\FileAsset;
48 use Assetic\Asset\GlobAsset;
49 use Assetic\Filter\LessFilter;
50 use Assetic\Filter\Yui;
75 The core provides the following filters in the `Assetic\Filter` namespace:
126 use Assetic\AssetManager;
127 use Assetic\Asset\FileAsset;
128 use Assetic\Asset\GlobAsset;
140 use Assetic\Asset\AssetCollection;
141 use Assetic\Asset\AssetReference;
142 use Assetic\Asset\FileAsset;
158 use Assetic\FilterManager;
159 use Assetic\Filter\Sass\SassFilter;
160 use Assetic\Filter\Yui;
176 use Assetic\Factory\AssetFactory;
199 You can also register [Workers](src/Assetic/Factory/Worker/WorkerInterface.php) on the factory and …
211 use Assetic\AssetWriter;
232 use Assetic\Factory\AssetFactory;
233 use Assetic\Factory\Worker\CacheBustingWorker;
260 use Assetic\Asset\AssetCache;
261 use Assetic\Asset\FileAsset;
262 use Assetic\Cache\FilesystemCache;
263 use Assetic\Filter\Yui;
280 To use the Assetic [Twig][3] extension you must register it to your Twig
318 use Assetic\AssetWriter;
319 use Assetic\Extension\Twig\TwigFormulaLoader;
320 use Assetic\Extension\Twig\TwigResource;
321 use Assetic\Factory\LazyAssetManager;
340 Assetic is based on the Python [webassets][1] library (available on