fdevs /sitemap-bundle

4devs SitemapBundle

安装: 712

依赖: 0

建议者: 2

安全性: 0

星星: 0

关注者: 4

分支: 0

开放问题: 1

类型:symfony-bundle

2.0.2 2016-06-17 12:29 UTC

This package is not auto-updated.

Last update: 2024-09-20 21:02:53 UTC


README

Build Status

文档

使用Sitemaps XML格式规则生成网站地图

安装

Bundle 使用 Composer,请访问composer 网站获取更多信息。

以下简单命令将安装 sitemap-bundle 到您的项目中。它还会在您的 composer.json 中添加新条目并更新 composer.lock

composer require fdevs/sitemap-bundle

添加到您的 app/AppKernel.php

<?php

use Symfony\Component\HttpKernel\Kernel;
use Symfony\Component\Config\Loader\LoaderInterface;

class AppKernel extends Kernel
{
    /**
     * {@inheritdoc}
     */
    public function registerBundles()
    {
        $bundles = [
        //....
            new FDevs\SitemapBundle\FDevsSitemapBundle(),
        ];
        //....

        return $bundles;
    }
    //....
}

许可协议

此包受 MIT 许可协议的约束。请参阅包中的完整许可协议。

LICENSE

报告问题或功能请求

问题和功能请求在 Github 问题跟踪器 中跟踪。

报告错误时,最好在基于 Symfony 标准版 的基本项目中重现它,以便包的开发者可以通过简单地克隆它并遵循一些步骤来重现问题。

4devs 创建 - 查看我们的 博客 了解有关此和其他我们发布的开源项目的更多信息。