Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 385 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 385 Bytes

Dog breeds bundle

Installation

Add DogBreedsBundle by running this command

$ composer.phar require velikonja/dog-breeds-bundle "@stable"

Enable the bundle in AppKernel

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Velikonja\DogBreedsBundle\VelikonjaDogBreedsBundle(),
    );
}