rifat-h / site-map-scanner
A package for scanning url and returns sitemap xml as string
dev-main
2026-01-13 10:30 UTC
Requires
- ext-dom: *
This package is auto-updated.
Last update: 2026-04-13 11:11:32 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:dev-main
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.
}