Edit your composer.json
and add the following package as a require:
{
"require": {
"webuni/assetic-bundle": "1.0@dev"
}
}
Edit your app/AppKernel.php
and add the bundle to the registerBundles method:
public function registerBundles()
{
$bundles = array(
// ...
new Webuni\AsseticBundle\WebuniAsseticBundle(),
// ...
)
}