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-bundleGiven your server's public directory is named "web", install the public vendor resources
$ php app/console assets:install webOptionally, use the --symlink attribute to create links rather than copies of the resources
$ php app/console assets:install --symlink webRefer 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