bytes / docraptor-bundle
Bundle around the Docraptor API client
Installs: 12 430
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 1
Open Issues: 1
Type:symfony-bundle
Requires
- php: >=5.3.2
- bytes/docraptor: dev-master
- symfony/framework-bundle: ~2.1
This package is not auto-updated.
Last update: 2024-11-09 17:50:51 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(), // ... ); // ... }