bytes / docraptor-bundle
Bundle around the Docraptor API client
Package info
github.com/MartijnDwars/docraptor-bundle
Type:symfony-bundle
pkg:composer/bytes/docraptor-bundle
dev-master
2013-05-19 12:22 UTC
Requires
- php: >=5.3.2
- bytes/docraptor: dev-master
- symfony/framework-bundle: ~2.1
This package is not auto-updated.
Last update: 2026-03-01 01:16:19 UTC
README
Symfony2 bundle for using the Docraptor API.
Installation
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(), // ... ); // ... }