fancyBox 2.1.4
// composer.json
{
"require": {
// ...
"RomanGorbatko/fancybox-bundle": "*"
}
}
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new RomanGorbatko\FancyBoxBundle\RomanGorbatkoFancyBoxBundle(),
// ...
);
}
$ php composer.phar update RomanGorbatko/fancybox-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/RomanGorbatkofancybox/js/fancybox/source/jquery.fancybox.pack.js') }}"></script>
Refer to the source code of the included files for license information