fdevs / sitemap-bundle
4devs SitemapBundle
Installs: 712
Dependents: 0
Suggesters: 2
Security: 0
Stars: 0
Watchers: 4
Forks: 0
Open Issues: 1
Type:symfony-bundle
Requires
- php: >=5.4
- fdevs/sitemap-bridge: ~0.1
- symfony/framework-bundle: ~2.8|~3.0
Suggests
- doctrine/mongodb-odm-bundle: for use dynamic generate document
This package is not auto-updated.
Last update: 2024-11-01 21:32:36 UTC
README
Documentation
use rules Sitemaps XML format for the generate sitemap
Installation
Bundle uses Composer, please checkout the composer website for more information.
The simple following command will install sitemap-bundle
into your project. It also add a new
entry in your composer.json
and update the composer.lock
as well.
composer require fdevs/sitemap-bundle
add to your 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; } //.... }
License
This bundle is under the MIT license. See the complete license in the bundle:
LICENSE
Reporting an issue or a feature request
Issues and feature requests are tracked in the Github issue tracker.
When reporting a bug, it may be a good idea to reproduce it in a basic project built using the Symfony Standard Edition to allow developers of the bundle to reproduce the issue by simply cloning it and following some steps.
Created by 4devs - Check out our blog for more insight into this and other open-source projects we release.