bytes / docraptor-bundle
围绕Docraptor API客户端的捆绑包
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: 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(), // ... ); // ... }