Skip to content

Commit

Permalink
✨ added options to disable feed/sitemap
Browse files Browse the repository at this point in the history
  • Loading branch information
bnomei committed May 28, 2024
1 parent e6ffb59 commit 632bbe3
Show file tree
Hide file tree
Showing 10 changed files with 603 additions and 478 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
php-version: '8.1'
tools: composer

- name: Install
run: composer install

# update kirby to latest release of version 3 (includes release candidates!)
# https://semver.mwl.be/#!?package=getkirby%2Fcms&version=3.*&minimum-stability=RC
# update kirby to latest release of version 4 (includes release candidates!)
# https://semver.mwl.be/#!?package=getkirby%2Fcms&version=4.*&minimum-stability=RC
- name: Update Kirby Core
run: composer require getkirby/cms:"3.*@RC"
run: composer require getkirby/cms:"4.*@RC"

- name: Run Tests
run: composer test
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: php
php: 8.0
php: 8.1
matrix:
fast_finish: true
install: composer install --no-interaction
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Kirby 3 Feed and Sitemap
# Kirby 3/4 Feed and Sitemap

![Release](https://flat.badgen.net/packagist/v/bnomei/kirby3-feed?color=ae81ff)
![Downloads](https://flat.badgen.net/packagist/dt/bnomei/kirby3-feed?color=272822)
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "bnomei/kirby3-feed",
"type": "kirby-plugin",
"version": "1.5.8",
"version": "1.6.0",
"description": "Generate a RSS/JSON/Sitemap-Feed from a Pages-Collection",
"license": "MIT",
"authors": [
Expand All @@ -11,9 +11,9 @@
}
],
"keywords": [
"kirby3",
"kirby3-cms",
"kirby3-plugin",
"kirby",
"kirby-cms",
"kirby-plugin",
"rss-feed",
"rss",
"feed",
Expand All @@ -33,11 +33,11 @@
}
},
"require": {
"php": ">=8.0",
"php": ">=8.1",
"getkirby/composer-installer": "^1.2"
},
"require-dev": {
"getkirby/cms": "^3.5",
"getkirby/cms": "^4.0",
"php-coveralls/php-coveralls": "^2.4",
"phpunit/phpunit": "^9.5"
},
Expand Down
Loading

0 comments on commit 632bbe3

Please sign in to comment.