WARNING: Not ready for prime-time, still in very early development
This bundle provides a issue tracking tool built on top of Symfony 2 and Sonata, useful for providing your users with a simple way to communicate with developers.
- Issues
- Custom types
- Comments
- Requirements
There are very few requirements to get the bundle up and running, the most important being a working installation of Symfony 2.
- Installation
In your composer.json, add the following line:
"require": {
...,
"stof/doctrine-extensions-bundle": "dev-master",
"zertz/bug-bundle": "dev-master"
}
You will then need to run an update:
php composer.phar update
- Configuration
In your AppKernel, you need to include these dependencies:
public function registerBundles()
{
$bundles = array(
...,
new Zertz\BugBundle\ZertzBugBundle()
);
...
}
- Database
To update your schema, run the following command:
php app/console doctrine:schema:update --force
- Usage
The bundle is configured with a service that automatically connects with SonataAdminBundle.