Symfony2 bundle for using the Docraptor API.
If you are using Composer and Symfony >= 2.1.*, add the following to composer.json
file:
{
"require": {
"bytes/docraptor-bundle": "0.0.*",
"bytes/docraptor": "@dev"
}
}
Finally, register the bundle with your kernel in app/appKernel.php
:
public function registerBundles()
{
$bundles = array(
// ...
new Bytes\Bundle\DocraptorBundle\BytesDocraptorBundle(),
// ...
);
// ...
}