bytes/docraptor-bundle

Bundle around the Docraptor API client

Installs: 12 430

Dependents: 1

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 1

Type:symfony-bundle

dev-master 2013-05-19 12:22 UTC

This package is not auto-updated.

Last update: 2024-04-13 14:55: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(),
        // ...
    );

    // ...
}