-
Notifications
You must be signed in to change notification settings - Fork 2
Symfony Bundle installation
matteosister edited this page Dec 5, 2014
·
2 revisions
To install the Symfony Bundle just require the library with composer
{
"require": {
"cypresslab/patch-manager": "1.0.*@dev"
}
}
and add it to the app/AppKernel.php file inside the registerBundles() method
public function registerBundles() {
// other bundles...
$bundles[] = new PatchManager\Bundle\PatchManagerBundle();
}
Use the table of contents to the top right to navigate to other wiki sections.