webuni / assetic-bundle
Extra feature for Assetic
Installs: 37
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- symfony/assetic-bundle: ~2.1
This package is not auto-updated.
Last update: 2022-02-01 12:38:01 UTC
README
Installation
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(), // ... ) }