Underscore.js v1.8.3
// composer.json
{
"require": {
// ...
"bmatzner/underscore-bundle": "~1.8"
}
}
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new Bmatzner\UnderscoreBundle\BmatznerUnderscoreBundle(),
// ...
);
}
$ php composer.phar update bmatzner/underscore-bundle
Given your server's public directory is named "web", install the public vendor resources
$ php app/console assets:install web
Optionally, use the --symlink attribute to create links rather than copies of the resources
$ php app/console assets:install --symlink web
Refer to the desired files in your HTML template, e.g.
<script type="text/javascript" src="{{ asset('bundles/bmatznerunderscore/js/underscore.min.js') }}"></script>
Refer to the source code of the included files for license information