rifat-h/site-map-scanner

A package for scanning url and returns sitemap xml as string

Installs: 0

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/rifat-h/site-map-scanner

dev-main 2024-06-24 06:40 UTC

This package is auto-updated.

Last update: 2025-12-24 10:32:04 UTC


README

laravel sitemap scanner, takes url and returl sitemap xml as string

Installation

In your laravel project, run composer require rifat-h/site-map-scanner

Usage

To run the scanner first add use RifatH\SiteMapScanner\Scanner\Scanner; top of your php files.

Then use it like this.

use RifatH\SiteMapScanner\Scanner\Scanner;

public function index()
{

    $Scanner = new Scanner("https://www.mentiongenie.com/", 6); // param1: url of the site, param2: max_depth
    $SiteMapXml = $Scanner->scan();

    dd($SiteMapXml); // This will return the XML of the sitemap as string, just do your thing with it.

}