boxedcode/silex-knp-menu-service-provider

There is no license information available for the latest version (v1.0.0) of this package.

A Silex Knp Menu service provider which is compatible with Silex 2.*

v1.0.0 2016-07-20 20:39 UTC

This package is not auto-updated.

Last update: 2024-04-23 18:18:22 UTC


README

This is a simple Silex Knp Menu Service Provider which is compatible with Silex 2.*. You can find out more about Knp Menu here

Installation

Install using composer, more information on composer is available here. The following simple command will install silex-knp-menu-service-provider into your project, add a new entry in your composer.json file and update the composer.lock file as well.

composer require boxedcode/silex-knp-menu-service-provider

Usage

Simply register the service provider in your Silex 2.* application along the lines of the following:

<?php 

// Include dependencies installed with composer
require 'vendor/autoload.php';

use BoxedCode\Silex\Knp\MenuServiceProvider;
use Silex\Application;

$app = new Application();
$app->register(new MenuServiceProvider());

What now?

Follow the documentation available here and here to learn how to customise your menu and for other advanced usages of Knp Menu.

Credits

Knp Menu is provided courtesy of the team over at KnpLabs and the Symfony Community. Silex is provided courtesy of the team over at Sensio Labs.