Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 617 Bytes

sitemap.md

File metadata and controls

30 lines (21 loc) · 617 Bytes

Sitemap

This plugin suggests installing the Sylius sitemap plugin providing a sitemap for vendors.

Installation

  1. Run composer require stefandoorn/sitemap-plugin ^2.0@alpha

  2. Enable the plugin in bundles.php

<?php
// config/bundles.php

return [
    // ...
    SitemapPlugin\SitemapPlugin::class => ['all' => true],
];
  1. Import the providers
# config/services.yaml
imports:
    # ...
    - { resource: "@OdiseoSyliusVendorPlugin/Resources/config/services/sitemap.yaml" }

Follow the original SyliusSitemapPlugin documentation.