Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gemorroj/rss
rss parser
https://github.com/gemorroj/rss
rss rss-parser
Last synced: 1 day ago
JSON representation
rss parser
- Host: GitHub
- URL: https://github.com/gemorroj/rss
- Owner: Gemorroj
- License: lgpl-3.0
- Created: 2012-11-10T20:17:33.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2024-07-27T11:57:41.000Z (4 months ago)
- Last Synced: 2024-07-27T13:04:48.359Z (4 months ago)
- Topics: rss, rss-parser
- Language: PHP
- Homepage:
- Size: 26.4 KB
- Stars: 7
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RSS
[![Continuous Integration](https://github.com/Gemorroj/Rss/workflows/Continuous%20Integration/badge.svg?branch=master)](https://github.com/Gemorroj/Rss/actions?query=workflow%3A%22Continuous+Integration%22)
### Requirements:
- PHP >= 8.0.2
### Installation:
```bash
composer require gemorroj/rss
```Example:
```php
addItem(
'one item',
'http://example.com',
'some description',
new \DateTime('yesterday')
);echo $rss->saveXML(); // rss xml
// $rss->output(); // send rss to browser
```