bookeenweb/opds-parser-bundle

Symfony 解析 OPDS XML 包

安装: 13

依赖项: 0

建议者: 0

安全: 0

星标: 0

关注者: 4

分支: 0

开放性问题: 0

类型:symfony-bundle

1.3.1 2018-09-11 09:48 UTC

This package is auto-updated.

Last update: 2024-09-12 04:13:59 UTC


README

步骤 1: 下载包

打开命令行,进入您的项目目录,并执行以下命令以下载此包的最新稳定版本

$ composer require bookeenweb/opds-parser-bundle

此命令要求您全局安装 Composer,如 Composer 文档中的安装章节所述。

步骤 2: 启用包

然后,通过将其添加到项目 app/AppKernel.php 文件中注册的包列表中来启用包

<?php
// app/AppKernel.php

// ...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...
            new bookeen\opds-parser-bundle\OpdsParserBundle(),
        );

        // ...
    }

    // ...
}