Use Composer ! You can pick a version at Packagist, this bundle follows standard versioning : v1.5.x-dev for last updates, ~1.5 for stable releases.
// composer.json
{
"require": {
// ...
"majora/framework-extra-bundle": "~1.5"
}
}
Register the bundle into your Kernel :
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new Majora\Bundle\FrameworkExtraBundle\MajoraFrameworkExtraBundle($this),
);
}
Note : Pay attention to the reference into bundle instanciation, it's required to iterate over bundles for extra configuration discovering.