Download the PHP package kri55h/php-sitemapper without Composer
On this page you can find all versions of the php package kri55h/php-sitemapper. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download kri55h/php-sitemapper
More information about kri55h/php-sitemapper
Files in kri55h/php-sitemapper
Package php-sitemapper
Short Description php-sitemapper: A lightweight and powerful PHP library for generating dynamic XML sitemaps effortlessly. Designed to help developers enhance their website's SEO by creating search-engine-friendly sitemaps, this tool is perfect for small and large-scale projects alike.
License MIT
Homepage https://github.com/KRI55H/php-sitemapper
Rated 5.00 based on 1 reviews
Informations about the package php-sitemapper
php-sitemapper
php-sitemapper is a lightweight and powerful PHP library designed to generate dynamic XML sitemaps effortlessly. This library helps developers enhance their website's SEO by creating search-engine-friendly sitemaps, making it suitable for both small and large-scale projects. Fully compatible with Laravel and other PHP frameworks.
Features
- Dynamic Sitemap Generation: Easily add URLs with optional metadata like
lastmod
,changefreq
, andpriority
. - Base URL Support: Simplify URL management by setting a base URL for all sitemap entries.
- SEO-Friendly: Generate XML sitemaps that comply with search engine standards.
- File Export: Save the generated sitemap to a file for easy deployment.
- Lightweight and Flexible: Ideal for integration with any PHP project, including Laravel and other frameworks.
Installation
Install the library via Composer:
Usage
Basic Example
Laravel Example
For Laravel projects, you can use php-sitemapper
to generate sitemaps dynamically. Here's an example:
-
Install the package via Composer:
-
Use the library in a controller:
- Add a route for the sitemap:
Methods
addBaseUrl(string $baseUrl)
Sets the base URL for all sitemap entries.
Parameters:
$baseUrl
(string): The base URL of the site (e.g.,https://example.com
).
addUrl(string $loc, ?string $lastmod = null, ?string $changefreq = null, ?float $priority = null)
Adds a URL to the sitemap with optional metadata.
Parameters:
$loc
(string): The URL location (relative or absolute).$lastmod
(string|null): The last modification date inYYYY-MM-DD
format (optional).$changefreq
(string|null): The change frequency (e.g.,daily
,weekly
) (optional).$priority
(float|null): The priority of the URL (0.0 to 1.0) (optional).
generateXml(): string
Generates the XML sitemap as a string.
saveToFile(string $filePath): void
Saves the generated XML sitemap to a file.
Parameters:
$filePath
(string): The file path where the sitemap should be saved.
Requirements
- PHP 7.4 or higher
ext-json
enabled
License
This project is licensed under the MIT License.
Contributing
Contributions are welcome! Please feel free to submit issues or pull requests to improve this library.
Author
Developed by Krish Siddhapura
- Email: [email protected]
- GitHub: KRI55H
Keywords
- PHP sitemap generator
- Dynamic XML sitemap
- SEO-friendly sitemap library
- Generate sitemaps in PHP
- Lightweight PHP sitemap tool
- Laravel sitemap generator
- Dynamic sitemap generator
- Sitemapper PHP
- Laravel XML sitemap
All versions of php-sitemapper with dependencies
ext-json Version *