bytes/docraptor-bundle

围绕Docraptor API客户端的捆绑包

安装次数: 12,430

依赖项: 1

建议者: 0

安全性: 0

星标: 1

关注者: 2

分支: 1

类型:symfony-bundle

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

This package is not auto-updated.

Last update: 2024-09-14 16:55:36 UTC


README

用于使用Docraptor API的Symfony2捆绑包。

安装

如果您正在使用Composer和Symfony >= 2.1.*,请将以下内容添加到composer.json文件中

{
    "require": {
        "bytes/docraptor-bundle": "0.0.*",
        "bytes/docraptor": "@dev"
    }
}

最后,在app/appKernel.php中注册捆绑包与您的内核

public function registerBundles()
{
    $bundles = array(
        // ...
        new Bytes\Bundle\DocraptorBundle\BytesDocraptorBundle(),
        // ...
    );

    // ...
}