Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bobdenotter/rss-extension
RSS and Atom feeds for your Bolt 4 site
https://github.com/bobdenotter/rss-extension
Last synced: 25 days ago
JSON representation
RSS and Atom feeds for your Bolt 4 site
- Host: GitHub
- URL: https://github.com/bobdenotter/rss-extension
- Owner: bobdenotter
- License: mit
- Created: 2019-12-02T14:26:07.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-11-28T12:01:49.000Z (12 months ago)
- Last Synced: 2024-09-24T20:58:31.342Z (about 1 month ago)
- Language: PHP
- Size: 43 KB
- Stars: 3
- Watchers: 2
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Bolt RSS Extension
Author: Bob den Otter
This Bolt extension can be used to create RSS, Atom and JSON feeds for your
Bolt website.Installation:
```bash
composer require bobdenotter/rss-extension
```After installation, configure the workings of the extension in
`config/extensions/bobdenotter-rssextension.yaml`.-------
The part below is only for _developing_ the extension. Not required for general
usage of the extension in your Bolt Project.## Running PHPStan and Easy Codings Standard
First, make sure dependencies are installed:
```bash
COMPOSER_MEMORY_LIMIT=-1 composer update
```And then run ECS:
```bash
vendor/bin/ecs check src --fix
```