Symfony2 Partnership Bundle
To install this bundle please follow the next steps:
First add the dependency in your composer.json file:
"require": {
...
"maliteam/partnership-bundle": "dev-master"
},Then install the bundle with the command:
php composer updateEnable the bundle in your application kernel:
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new Maliteam\Bundle\PartnershipBundle\MALITEAMPartnershipBundle(),
);
}Now the Bundle is installed.