Skip to content

Symfony Bundle installation

matteosister edited this page Dec 5, 2014 · 2 revisions

Next (Bundle Configuration) ►

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();
}

Next (Bundle Configuration) ►