Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 604 Bytes

installation.md

File metadata and controls

33 lines (25 loc) · 604 Bytes

Vardius - User Bundle

Installation

  1. Download using composer
  2. Enable the VardiusMenuBundle

1. Download using composer

Install the package through composer:

    php composer.phar require vardius/menu-bundle:*

2. Enable the VardiusMenuBundle

Enable the bundle in the kernel:

    <?php
    // app/AppKernel.php

    public function registerBundles()
    {
        $bundles = array(
            // ...
            new Vardius\Bundle\MenuBundle\VardiusMenuBundle(),
        );
            
        // ...
    }