From da12c85ddcb559c0bd5b9d596b362d2eba3949ee Mon Sep 17 00:00:00 2001 From: William DURAND Date: Fri, 13 Jul 2012 16:06:01 +0200 Subject: [PATCH] Update README --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e28453e..a2aea6a 100644 --- a/README.md +++ b/README.md @@ -8,15 +8,20 @@ The **NelmioApiDocBundle** bundle allows you to generate a decent documentation ## Installation ## + +This bundle uses +[KnpMarkdownBundle](https://github.com/KnpLabs/KnpMarkdownBundle). + Register the namespace in `app/autoload.php`: // app/autoload.php $loader->registerNamespaces(array( // ... 'Nelmio' => __DIR__.'/../vendor/bundles', + 'Knp' => __DIR__.'/../vendor/bundles', )); -Register the bundle in `app/AppKernel.php`: +Register the bundles in `app/AppKernel.php`: // app/AppKernel.php public function registerBundles() @@ -24,6 +29,7 @@ Register the bundle in `app/AppKernel.php`: return array( // ... new Nelmio\ApiDocBundle\NelmioApiDocBundle(), + new Knp\Bundle\MarkdownBundle\KnpMarkdownBundle(), ); }