Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 531 Bytes

install.md

File metadata and controls

31 lines (23 loc) · 531 Bytes

Installation

  1. Download the bundle
php -r "readfile('https://getcomposer.org/installer');" | php
php composer.phar require ninsuo/GenyBundle
  1. Register the bundle in your app/AppKernel.php
    public function registerBundles()
    {
        $bundles = array(

            // ...
            new GenyBundle\GenyBundle(),
        );
    }
  1. Register the routing in your app/config/routing.yml
geny:
    resource: "@GenyBundle/Controller/"
    type:     annotation
    prefix:   /geny