PHP code example of wake / silex-twig-assetic-integration-provider

1. Go to this page and download the library: Download wake/silex-twig-assetic-integration-provider library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

wake / silex-twig-assetic-integration-provider example snippets


$app->register (new Silex\Provider\TwigAsseticIntegrationProvider (), array (
  'assetic.asset.root'        => 'your_asset_files_root',
  'assetic.asset.output_root' => 'your_asset_output_root',
  'assetic.debug'             => false,
  'assetic.filter'            => array (
    'sass'    => new \Assetic\Filter\SassFilter ('/path/to/parser/sass'),
    'yui_css' => new \Assetic\Filter\Yui\CssCompressorFilter ('/path/to/yuicompressor.jar')
  )
));