Skip to content

Latest commit

 

History

History
58 lines (40 loc) · 1.93 KB

README.md

File metadata and controls

58 lines (40 loc) · 1.93 KB

RoutingBundle

Build Status Scrutinizer Code Quality Latest Stable Version Total Downloads Latest Unstable Version License

Routing bundle integrating cmf routing component.

Installation

Step 1: Download RoutingBundle using composer

Add RoutingBundle in your composer.json:

{
    "require": {
        "tadcka/routing-bundle": "dev-master"
    }
}

Now tell composer to download the bundle by running the command:

$ php composer.phar update tadcka/routing-bundle

Step 2: Enable the bundle

Enable the bundle in the kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Tadcka\RoutingBundle\TadckaRoutingBundle(),
    );
}

1. Configure the TadckaRoutingBundle

2. Doctrine ORM Route class

License

This bundle is under the MIT license. See the complete license in the bundle:

Code License: Resources/meta/LICENSE