Skip to content

Commit

Permalink
Merge branch 'release/1.4.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
werner-freytag committed May 9, 2024
2 parents 53122bd + c2f3967 commit 74433ef
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# Sitemap Addon for Statamic

![Statamic 3.0+](https://img.shields.io/badge/Statamic-3.0+-FF269E?style=for-the-badge&link=https://statamic.com)
![Statamic 4.0+](https://img.shields.io/badge/Statamic-4.0+-FF269E?style=for-the-badge&link=https://statamic.com)
![Statamic 5.0+](https://img.shields.io/badge/Statamic-5.0+-FF269E?style=for-the-badge&link=https://statamic.com)

Automatically adds a sitemap to your Statamic v3 web site. The default path is <your web site>/sitemap.xml
Automatically adds a sitemap to your Statamic web site. The default path is <your web site>/sitemap.xml

## Installation

Expand All @@ -12,7 +14,7 @@ Include the package with composer:
composer require pecotamic/sitemap
```

The package requires Laravel 7+ and PHP 7.3+. It will auto register.
The package requires PHP 7.3+ or PHP 8+. It will auto register.

## Configuration (optional)

Expand Down
9 changes: 7 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"sitemap"
],
"require": {
"php": "^5.4|^7.0|^8.0",
"statamic/cms": "^3.0|^4.0"
"php": "^7.1|^8.0",
"statamic/cms": "^3.0|^4.0|^5.0"
},
"autoload": {
"psr-4": {
Expand All @@ -30,5 +30,10 @@
"Pecotamic\\Sitemap\\ServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": true
}
}
}

0 comments on commit 74433ef

Please sign in to comment.