This bundle provides a simple faq:
Add the following entries to the deps
in the root of your project file:
[IsicsFAQBundle]
git=https://github.com/isics/isicsFaqBundle.git
target=bundles/Isics/FAQBundle
Next, update your vendors by running:
$ ./bin/vendors
<?php
// app/autoload.php
$loader->registerNamespaces(array(
// ...
'Isics' => __DIR__.'/../vendor/isics',
));
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new Isics\FAQBundle\IsicsFAQBundle(),
);
}
# app/config/routing.yml
IsicsFAQBundle:
resource: "@IsicsFAQBundle/Resources/config/routing.yml"
prefix: /faq